]> granicus.if.org Git - clang/commitdiff
eliminate some random .ll file outputs
authorChris Lattner <sabre@nondot.org>
Tue, 27 Jan 2009 18:56:08 +0000 (18:56 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 27 Jan 2009 18:56:08 +0000 (18:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63117 91177308-0d34-0410-b5e6-96231b3b80d8

12 files changed:
test/CodeGen/opaque-pointer.c
test/CodeGen/pointer-arithmetic.c
test/CodeGen/string-literal.c
test/CodeGen/struct-comma.c
test/CodeGen/struct-init.c
test/CodeGen/struct.c
test/CodeGen/typedef.c
test/CodeGen/union.c
test/CodeGen/unsupported.c
test/CodeGen/vector.c
test/CodeGen/whilestmt.c
test/CodeGen/writable-strings.c

index 31c27f49144fe653dade20378f77ed333e350093..ba307f4d19398f4eb85978b29aae584cccf39f39 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: clang %s -emit-llvm -o %t
+// RUN: clang %s -emit-llvm -o -
 struct test;
 
 typedef void (*my_func) (struct test *);
index 23a6ab41a1c62cd02364e96775a0f711f78ea6fa..b1436b92492f1b374eaa681a7d85bb4dfc5fed7a 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: clang -S %s -o %t
+// RUN: clang -S %s -o -
 
 typedef int Int;
 
index e19168e4104c3bae829c476a58ffff38b6405fef..104477ee12ea2b8d7db6535b5c28c72e745d5dc5 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: clang -emit-llvm %s -o %t
+// RUN: clang -emit-llvm %s -o -
 
 int main() {
   char a[10] = "abc";
index b53013f7aab766f25c720dcfa79c4ca0f9c33f7f..293052921079577cc90fea70897a07c86078db2e 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: clang %s -emit-llvm -o %t
+// RUN: clang %s -emit-llvm -o -
 
 struct S {int a, b;} x;
 void a(struct S* b) {*b = (r(), x);}
index ab14a1dc1d4776318e471bd640559f1b3ea0ecf8..7d9d7082a762e2c5c6a6a281fd9da3724baf817b 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: clang %s -emit-llvm -o %t
+// RUN: clang %s -emit-llvm -o -
 
 typedef struct _zend_ini_entry zend_ini_entry;
 struct _zend_ini_entry {
index 76d9b772742e278d9ad7550e9e94a54037d0ddc1..c71796d9da107241dc3c921e39c556dbe35a9b29 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: clang %s -emit-llvm -o %t
+// RUN: clang %s -emit-llvm -o -
 
 struct  {
   int x;
index 75f6933c40d0c4c4db0a6aeb9090e8d1b7cd24e7..a615285620dfde98370cfc513b88a2e9061b2bac 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: clang -emit-llvm %s -o %t
+// RUN: clang -emit-llvm %s -o -
 
 typedef struct { int i; } Value;
 typedef Value *PValue;
index 9d82f4fd9b6f2b88ac61fdbd345713f7b6fc25cd..4b09a845b5db9901b3557029df48c79e893c967a 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: clang %s -emit-llvm -o %t
+// RUN: clang %s -emit-llvm -o -
 
 union u_tag {
   int a;
index 664119acdd49f797a65167dff1e41da62647e8e3..c5221493edf1127247fdb71e25636e4de3eb99c5 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: clang -verify -emit-llvm -o %t %s 
+// RUN: clang -verify -emit-llvm -o - %s 
 
 int f0(int x) {
   int vla[x];
index 86956e05f58fe5f828f7187a56b1c3cf6cb988e6..366c9aafddcbfe064d337666d3af83bff554a6a6 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: clang -emit-llvm %s -o %t
+// RUN: clang -emit-llvm %s -o -
 typedef short __v4hi __attribute__ ((__vector_size__ (8)));
 
 void f()
index c7f8de8a5291f1f7ba639275f756d4383c019765..fe17e1b2f192cde694af5630ea0202367ea11e81 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: clang %s -emit-llvm -o %t
+// RUN: clang %s -emit-llvm -o -
 
 int bar();
 int foo() {
index cde64aa5e6d3943c40997a52c7da471225ad3110..a2a8f3cc402350c645ccccdf6f277453da767c1e 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: clang -emit-llvm -o %t -fwritable-strings %s
+// RUN: clang -emit-llvm -o - -fwritable-strings %s
 
 int main() {
     char *str = "abc";