All 'llvmgcc' tests should specify %llvmgcc so that the path is passed
authorBrian Gaeke <gaeke@uiuc.edu>
Thu, 6 Nov 2003 21:13:45 +0000 (21:13 +0000)
committerBrian Gaeke <gaeke@uiuc.edu>
Thu, 6 Nov 2003 21:13:45 +0000 (21:13 +0000)
in by qmtest.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9757 91177308-0d34-0410-b5e6-96231b3b80d8

test/CFrontend/2003-07-22-ArrayAccessTypeSafety.c.tr
test/CFrontend/2003-08-06-BuiltinSetjmpLongjmp.c.tr
test/CFrontend/2003-08-17-DeadCodeShortCircuit.c.tr
test/CFrontend/2003-11-03-AddrArrayElement.c.tr

index 4473bfe6e10fd1bb92cdba129053f91a8857dc23..705b2590a6bca1729d30d9b89d0a61fbfad4e39c 100644 (file)
@@ -1,4 +1,4 @@
-/* RUN: llvmgcc -xc %s -c -o - | dis | not grep cast
+/* RUN: %llvmgcc -xc %s -c -o - | dis | not grep cast
  */
 
 void test(int* array, long long N) {
index abc5bf3b8b11be32f79b5c83e67a781b14d07264..4bdbf988bdcbd5de541504213f03d69ca568f7df 100644 (file)
@@ -1,4 +1,4 @@
-/* RUN: llvmgcc -xc %s -c -o - | dis | not grep __builtin_
+/* RUN: %llvmgcc -xc %s -c -o - | dis | not grep __builtin_
  *
  * __builtin_longjmp/setjmp should get transformed into llvm.setjmp/longjmp 
  * just like explicit setjmp/longjmp calls are.
index 938ea9ff2b42b7c18c3505920bdd302dd249de84..0027da6c4887811ce54ace3b878e787aef74eb13 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: llvmgcc -xc %s -c
+// RUN: %llvmgcc -xc %s -c
 
 int test(_Bool pos, _Bool color) {
   return 0;
index 8a38b387daf17a357c858ad94fdc273ae749b4d4..ed3fc1a6cb42c0ef05927aea6ca72e1f618697d3 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: llvmgcc -xc %s -c -o - | llvm-dis | grep getelementptr
+// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep getelementptr
 
 // This should be turned into a tasty getelementptr instruction, not a nasty
 // series of casts and address arithmetic.