Test the C front-end, not the C++ front-end.
authorDuncan Sands <baldrick@free.fr>
Wed, 26 Sep 2007 07:28:20 +0000 (07:28 +0000)
committerDuncan Sands <baldrick@free.fr>
Wed, 26 Sep 2007 07:28:20 +0000 (07:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42350 91177308-0d34-0410-b5e6-96231b3b80d8

test/CFrontend/2007-06-05-NoInlineAttribute.c
test/CFrontend/2007-06-15-AnnotateAttribute.c
test/CFrontend/2007-07-29-RestrictPtrArg.c
test/CFrontend/2007-09-20-GcrootAttribute.c

index 1fd981b6e4df4de6c14f3260cc4dad3524994965..cb1920aed091576f6c2bf6e368ea106ad4898037 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %llvmgxx -c -emit-llvm %s -o - | llvm-dis | grep llvm.noinline 
+// RUN: %llvmgcc -c -emit-llvm %s -o - | llvm-dis | grep llvm.noinline 
 
 static int bar(int x, int y) __attribute__((noinline));
 
index 56bdc6ae585381953fe307d5661eb17022e36ecc..00991173703679d351efec8b4a184b5c7ec89373 100644 (file)
@@ -1,5 +1,5 @@
-// RUN: %llvmgxx -c -emit-llvm %s -o - | llvm-dis | grep llvm.global.annotations
-// RUN: %llvmgxx -c -emit-llvm %s -o - | llvm-dis | grep llvm.var.annotation | count 3 
+// RUN: %llvmgcc -c -emit-llvm %s -o - | llvm-dis | grep llvm.global.annotations
+// RUN: %llvmgcc -c -emit-llvm %s -o - | llvm-dis | grep llvm.var.annotation | count 3 
 
 #include <stdio.h>
 
index d54dfbe57121d3ab987824a50c44399087156dd1..99eae39054b3e3f8ea1ae85b05ab9479e48a7852 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %llvmgxx -c -emit-llvm %s -o - | llvm-dis | grep noalias
+// RUN: %llvmgcc -c -emit-llvm %s -o - | llvm-dis | grep noalias
 
 void foo(int * __restrict myptr1, int * myptr2) {
   myptr1[0] = 0;
index aea9d5496885acd917eac83492facdefbb17f663..621d1353bbabae033889d6b32409aba90c3773ba 100644 (file)
@@ -1,5 +1,5 @@
-// RUN: %llvmgxx -S -emit-llvm %s -o - | grep llvm.gcroot
-// RUN: %llvmgxx -S -emit-llvm %s -o - | grep llvm.gcroot | count 6
+// RUN: %llvmgcc -S -emit-llvm %s -o - | grep llvm.gcroot
+// RUN: %llvmgcc -S -emit-llvm %s -o - | grep llvm.gcroot | count 6
 
 typedef struct foo_s
 {