diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2018-03-10 01:47:22 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2018-03-10 01:47:22 +0000 |
commit | 007cb6df582f30ca9299d8b61357e9e45557c262 (patch) | |
tree | f64348e10d5d3ee78c3833e0b54f73c8e433d550 /clang/lib/CodeGen/CGObjCGNU.cpp | |
parent | aaabea0636eb5177b4b26f9d932268dc7f677b08 (diff) | |
download | bcm5719-llvm-007cb6df582f30ca9299d8b61357e9e45557c262.tar.gz bcm5719-llvm-007cb6df582f30ca9299d8b61357e9e45557c262.zip |
Revert r326946. It caused stack overflows by significantly increasing the size of a CallArgList.
llvm-svn: 327195
Diffstat (limited to 'clang/lib/CodeGen/CGObjCGNU.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGObjCGNU.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGObjCGNU.cpp b/clang/lib/CodeGen/CGObjCGNU.cpp index a6b6c38d5cc..5a025ce0846 100644 --- a/clang/lib/CodeGen/CGObjCGNU.cpp +++ b/clang/lib/CodeGen/CGObjCGNU.cpp @@ -1441,7 +1441,7 @@ CGObjCGNU::GenerateMessageSend(CodeGenFunction &CGF, } // Reset the receiver in case the lookup modified it - ActualArgs[0] = CallArg(RValue::get(Receiver), ASTIdTy); + ActualArgs[0] = CallArg(RValue::get(Receiver), ASTIdTy, false); imp = EnforceType(Builder, imp, MSI.MessengerType); |