From acf9896ca192889a85019a4ef182f0bead0dadcd Mon Sep 17 00:00:00 2001 From: Akira Hatanaka Date: Thu, 12 Jan 2012 01:27:24 +0000 Subject: Fix test case committed in r147986. llvm-svn: 147993 --- clang/test/CodeGen/mips64-padding-arg.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'clang/test/CodeGen/mips64-padding-arg.c') diff --git a/clang/test/CodeGen/mips64-padding-arg.c b/clang/test/CodeGen/mips64-padding-arg.c index faafd5e63cb..6504a7eb9e1 100644 --- a/clang/test/CodeGen/mips64-padding-arg.c +++ b/clang/test/CodeGen/mips64-padding-arg.c @@ -31,13 +31,13 @@ void foo3(int a0, long double a1) { // 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); } -- cgit v1.2.3