diff options
author | Manman Ren <mren@apple.com> | 2013-03-16 04:47:38 +0000 |
---|---|---|
committer | Manman Ren <mren@apple.com> | 2013-03-16 04:47:38 +0000 |
commit | c089074aa57af8cb9cbef1ba351e828c46bab603 (patch) | |
tree | ed80b5b100b6872c2e1aecf938819dccd4334484 /clang/test/CodeGenCXX/arm.cpp | |
parent | 612f7bfa4dddf8521663d8e9a60132f1dd5d3e0b (diff) | |
download | bcm5719-llvm-c089074aa57af8cb9cbef1ba351e828c46bab603.tar.gz bcm5719-llvm-c089074aa57af8cb9cbef1ba351e828c46bab603.zip |
revert r177211 due to its potential issues
llvm-svn: 177222
Diffstat (limited to 'clang/test/CodeGenCXX/arm.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/arm.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/CodeGenCXX/arm.cpp b/clang/test/CodeGenCXX/arm.cpp index 48f2f008401..3d3b147aa1f 100644 --- a/clang/test/CodeGenCXX/arm.cpp +++ b/clang/test/CodeGenCXX/arm.cpp @@ -56,15 +56,15 @@ namespace test1 { // CHECK: [[THIS:%.*]] = alloca [[A]]*, align 4 // CHECK: store [[A]]* {{.*}}, [[A]]** [[THIS]] // CHECK: [[THIS1:%.*]] = load [[A]]** [[THIS]] - // CHECK: [[THIS2:%.*]] = call [[A]]* @_ZN5test11AC2Ei( - // CHECK: ret [[A]]* [[THIS2]] + // CHECK: call [[A]]* @_ZN5test11AC2Ei( + // CHECK: ret [[A]]* [[THIS1]] // CHECK: define linkonce_odr [[A]]* @_ZN5test11AD1Ev([[A]]* %this) unnamed_addr // CHECK: [[THIS:%.*]] = alloca [[A]]*, align 4 // CHECK: store [[A]]* {{.*}}, [[A]]** [[THIS]] // CHECK: [[THIS1:%.*]] = load [[A]]** [[THIS]] - // CHECK: [[THIS2:%.*]] = call [[A]]* @_ZN5test11AD2Ev( - // CHECK: ret [[A]]* [[THIS2]] + // CHECK: call [[A]]* @_ZN5test11AD2Ev( + // CHECK: ret [[A]]* [[THIS1]] } // Awkward virtual cases. |