[cfe-commits] r147993 - /cfe/trunk/test/CodeGen/mips64-padding-arg.c

Akira Hatanaka ahatanaka at mips.com
Wed Jan 11 17:27:25 PST 2012


Author: ahatanak
Date: Wed Jan 11 19:27:24 2012
New Revision: 147993

URL: http://llvm.org/viewvc/llvm-project?rev=147993&view=rev
Log:
Fix test case committed in r147986.

Modified:
    cfe/trunk/test/CodeGen/mips64-padding-arg.c

Modified: cfe/trunk/test/CodeGen/mips64-padding-arg.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/mips64-padding-arg.c?rev=147993&r1=147992&r2=147993&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/mips64-padding-arg.c (original)
+++ cfe/trunk/test/CodeGen/mips64-padding-arg.c Wed Jan 11 19:27:24 2012
@@ -31,13 +31,13 @@
 
 // Insert padding after hidden argument.
 //
-// CHECK: define void @foo5(%struct.S0* noalias nocapture sret %agg.result, i64, fp128 %a0)
-// CHECK: call void @foo6(%struct.S0* sret %tmp, i32 1, i32 2, i64 undef, fp128 %a0)
+// CHECK: define void @foo5(%struct.S0* noalias sret %agg.result, i64, fp128 %a0)
+// CHECK: call void @foo6(%struct.S0* sret %agg.result, i32 1, i32 2, i64 undef, fp128 %a0)
 // CHECK: declare void @foo6(%struct.S0* sret, i32, i32, i64, fp128)
 
 extern S0 foo6(int, int, long double);
 
 S0 foo5(long double a0) {
-  foo6(1, 2, a0);
+  return foo6(1, 2, a0);
 }
 





More information about the cfe-commits mailing list