forked from OSchip/llvm-project
fix a crash on code that uses the result value of __builtin___memcpy_chk.
llvm-svn: 129892
This commit is contained in:
parent
d70ca52081
commit
54fd1a1ad3
|
@ -556,7 +556,7 @@ RValue CodeGenFunction::EmitBuiltinExpr(const FunctionDecl *FD,
|
||||||
Value *Src = EmitScalarExpr(E->getArg(1));
|
Value *Src = EmitScalarExpr(E->getArg(1));
|
||||||
Value *SizeVal = llvm::ConstantInt::get(Builder.getContext(), Size);
|
Value *SizeVal = llvm::ConstantInt::get(Builder.getContext(), Size);
|
||||||
Builder.CreateMemCpy(Dest, Src, SizeVal, 1, false);
|
Builder.CreateMemCpy(Dest, Src, SizeVal, 1, false);
|
||||||
return RValue::get(0);
|
return RValue::get(Dest);
|
||||||
}
|
}
|
||||||
|
|
||||||
case Builtin::BI__builtin_objc_memmove_collectable: {
|
case Builtin::BI__builtin_objc_memmove_collectable: {
|
||||||
|
@ -581,7 +581,7 @@ RValue CodeGenFunction::EmitBuiltinExpr(const FunctionDecl *FD,
|
||||||
Value *Src = EmitScalarExpr(E->getArg(1));
|
Value *Src = EmitScalarExpr(E->getArg(1));
|
||||||
Value *SizeVal = llvm::ConstantInt::get(Builder.getContext(), Size);
|
Value *SizeVal = llvm::ConstantInt::get(Builder.getContext(), Size);
|
||||||
Builder.CreateMemMove(Dest, Src, SizeVal, 1, false);
|
Builder.CreateMemMove(Dest, Src, SizeVal, 1, false);
|
||||||
return RValue::get(0);
|
return RValue::get(Dest);
|
||||||
}
|
}
|
||||||
|
|
||||||
case Builtin::BImemmove:
|
case Builtin::BImemmove:
|
||||||
|
@ -616,7 +616,7 @@ RValue CodeGenFunction::EmitBuiltinExpr(const FunctionDecl *FD,
|
||||||
Value *SizeVal = llvm::ConstantInt::get(Builder.getContext(), Size);
|
Value *SizeVal = llvm::ConstantInt::get(Builder.getContext(), Size);
|
||||||
Builder.CreateMemSet(Address, ByteVal, SizeVal, 1, false);
|
Builder.CreateMemSet(Address, ByteVal, SizeVal, 1, false);
|
||||||
|
|
||||||
return RValue::get(0);
|
return RValue::get(Address);
|
||||||
}
|
}
|
||||||
case Builtin::BI__builtin_dwarf_cfa: {
|
case Builtin::BI__builtin_dwarf_cfa: {
|
||||||
// The offset in bytes from the first argument to the CFA.
|
// The offset in bytes from the first argument to the CFA.
|
||||||
|
|
|
@ -42,3 +42,9 @@ void test4(char *P, char *Q) {
|
||||||
void test5(char *P, char *Q) {
|
void test5(char *P, char *Q) {
|
||||||
__builtin___memmove_chk(P, Q, 128, 128);
|
__builtin___memmove_chk(P, Q, 128, 128);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// CHECK: @test6
|
||||||
|
// CHECK: call void @llvm.memcpy
|
||||||
|
int test6(char *X) {
|
||||||
|
return __builtin___memcpy_chk(X, X, 42, 42) != 0;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue