summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/CodeGen/CGCall.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/CGCall.cpp b/lib/CodeGen/CGCall.cpp
index d35a48bad0..3baeb8dd28 100644
--- a/lib/CodeGen/CGCall.cpp
+++ b/lib/CodeGen/CGCall.cpp
@@ -187,8 +187,8 @@ RValueTy CodeGenFunction::EmitCall(llvm::Value *Callee,
ArgList.add(ResultTemp);
}
- auto Result = Builder.CreateCall(Callee,
- ArgList.createValues(), "call");
+ auto Result = Builder.CreateCall(Callee,
+ ArgList.createValues());
Result->setCallingConv(FuncInfo->getCallingConv());
if(ReturnsNothing ||
@@ -236,7 +236,7 @@ RValueTy CodeGenFunction::EmitCall(CGFunction Func,
}
auto Result = Builder.CreateCall(Func.getFunction(),
- ArgList.createValues(), "call");
+ ArgList.createValues());
Result->setCallingConv(FuncInfo->getCallingConv());
if(!FuncInfo->getReturnInfo().Type.isNull() &&
FuncInfo->getReturnInfo().Type->isComplexType())