aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2012-07-24 20:00:35 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2012-07-24 20:00:35 +0000
commit833850bc5d9991c1b0e1fd408b68b6217938ce63 (patch)
tree12a221106d20eb692a41aecfa26ded2614d1220f
parent57bc51cfec0f39376ad78c03432a12137cd26c2a (diff)
Don't use a temporary file.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160686 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/regparm-flag.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/CodeGen/regparm-flag.c b/test/CodeGen/regparm-flag.c
index 8ecf539508..1330663e45 100644
--- a/test/CodeGen/regparm-flag.c
+++ b/test/CodeGen/regparm-flag.c
@@ -1,5 +1,4 @@
-// RUN: %clang_cc1 -triple i386-unknown-unknown -mregparm 4 %s -emit-llvm -o %t
-// RUN: FileCheck < %t %s
+// RUN: %clang_cc1 -triple i386-unknown-unknown -mregparm 4 %s -emit-llvm -o - | FileCheck %s
void f1(int a, int b, int c, int d,
int e, int f, int g, int h);