Skip to content

Commit 885ddfb

Browse files
committed
Temporarily remove this assertion while investigating buildbot fallout.
1 parent df010b0 commit 885ddfb

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

lib/IRGen/IRBuilder.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,6 @@ class IRBuilder : public IRBuilderBase {
262262
llvm::CallInst *CreateCall(llvm::Value *Callee, ArrayRef<llvm::Value *> Args,
263263
const Twine &Name = "",
264264
llvm::MDNode *FPMathTag = nullptr) {
265-
assert((!DebugInfo || getCurrentDebugLocation()) && "no debugloc on call");
266265
auto Call = IRBuilderBase::CreateCall(Callee, Args, Name, FPMathTag);
267266
setCallingConvUsingCallee(Call);
268267
return Call;
@@ -272,7 +271,6 @@ class IRBuilder : public IRBuilderBase {
272271
ArrayRef<llvm::Value *> Args,
273272
const Twine &Name = "",
274273
llvm::MDNode *FPMathTag = nullptr) {
275-
assert((!DebugInfo || getCurrentDebugLocation()) && "no debugloc on call");
276274
auto Call = IRBuilderBase::CreateCall(FTy, Callee, Args, Name, FPMathTag);
277275
setCallingConvUsingCallee(Call);
278276
return Call;
@@ -282,7 +280,6 @@ class IRBuilder : public IRBuilderBase {
282280
ArrayRef<llvm::Value *> Args,
283281
const Twine &Name = "",
284282
llvm::MDNode *FPMathTag = nullptr) {
285-
assert((!DebugInfo || getCurrentDebugLocation()) && "no debugloc on call");
286283
auto Call = IRBuilderBase::CreateCall(Callee, Args, Name, FPMathTag);
287284
setCallingConvUsingCallee(Call);
288285
return Call;

0 commit comments

Comments
 (0)