aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2011-03-01 19:55:40 +0000
committerDouglas Gregor <dgregor@apple.com>2011-03-01 19:55:40 +0000
commit438d7f05d34abfdf6a8a8954a957b97275162070 (patch)
tree6796c214740f4dc081499eef65884af0786be4d5
parentef165c94cf743c7e5eb6f65bced28cdb9ba118f5 (diff)
Kill off more names to fix this test
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@126775 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/mrtd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/mrtd.c b/test/CodeGen/mrtd.c
index a46d5e006e..2cc71bb008 100644
--- a/test/CodeGen/mrtd.c
+++ b/test/CodeGen/mrtd.c
@@ -4,9 +4,9 @@ void baz(int arg);
// CHECK: define x86_stdcallcc void @foo(i32 %arg) nounwind
void foo(int arg) {
-// CHECK: call x86_stdcallcc i32 (...)* @bar(i32 %tmp)
+// CHECK: call x86_stdcallcc i32 (...)* @bar(i32
bar(arg);
-// CHECK: call x86_stdcallcc void @baz(i32 %tmp1)
+// CHECK: call x86_stdcallcc void @baz(i32
baz(arg);
}