diff options
-rw-r--r-- | test/CodeGen/mrtd.c | 4 |
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); } |