Author: baldrick
Date: Wed Sep 26 02:28:20 2007
New Revision: 42350

URL: http://llvm.org/viewvc/llvm-project?rev=42350&view=rev
Log:
Test the C front-end, not the C++ front-end.

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

Modified: llvm/trunk/test/CFrontend/2007-06-05-NoInlineAttribute.c
URL: 
http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CFrontend/2007-06-05-NoInlineAttribute.c?rev=42350&r1=42349&r2=42350&view=diff

==============================================================================
--- llvm/trunk/test/CFrontend/2007-06-05-NoInlineAttribute.c (original)
+++ llvm/trunk/test/CFrontend/2007-06-05-NoInlineAttribute.c Wed Sep 26 
02:28:20 2007
@@ -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));
 

Modified: llvm/trunk/test/CFrontend/2007-06-15-AnnotateAttribute.c
URL: 
http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CFrontend/2007-06-15-AnnotateAttribute.c?rev=42350&r1=42349&r2=42350&view=diff

==============================================================================
--- llvm/trunk/test/CFrontend/2007-06-15-AnnotateAttribute.c (original)
+++ llvm/trunk/test/CFrontend/2007-06-15-AnnotateAttribute.c Wed Sep 26 
02:28:20 2007
@@ -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>
 

Modified: llvm/trunk/test/CFrontend/2007-07-29-RestrictPtrArg.c
URL: 
http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CFrontend/2007-07-29-RestrictPtrArg.c?rev=42350&r1=42349&r2=42350&view=diff

==============================================================================
--- llvm/trunk/test/CFrontend/2007-07-29-RestrictPtrArg.c (original)
+++ llvm/trunk/test/CFrontend/2007-07-29-RestrictPtrArg.c Wed Sep 26 02:28:20 
2007
@@ -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;

Modified: llvm/trunk/test/CFrontend/2007-09-20-GcrootAttribute.c
URL: 
http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CFrontend/2007-09-20-GcrootAttribute.c?rev=42350&r1=42349&r2=42350&view=diff

==============================================================================
--- llvm/trunk/test/CFrontend/2007-09-20-GcrootAttribute.c (original)
+++ llvm/trunk/test/CFrontend/2007-09-20-GcrootAttribute.c Wed Sep 26 02:28:20 
2007
@@ -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
 {


_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to