All 'llvmgcc' tests should specify %llvmgcc so that the path is passed

in by qmtest.

llvm-svn: 9757
This commit is contained in:
Brian Gaeke 2003-11-06 21:13:45 +00:00
parent 2a09659109
commit 18027874ef
4 changed files with 4 additions and 4 deletions

View 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) {

View 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.

View File

@ -1,4 +1,4 @@
// RUN: llvmgcc -xc %s -c
// RUN: %llvmgcc -xc %s -c
int test(_Bool pos, _Bool color) {
return 0;

View 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.