Adding RUN lines.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17527 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/Generic/call-ret0.ll b/test/CodeGen/Generic/call-ret0.ll
index 205b0be..79edc1e 100644
--- a/test/CodeGen/Generic/call-ret0.ll
+++ b/test/CodeGen/Generic/call-ret0.ll
@@ -1,3 +1,5 @@
+; RUN: llvm-as < %s | llc
+
 int %foo(int %x) {
   ret int %x
 }
diff --git a/test/CodeGen/Generic/call-ret42.ll b/test/CodeGen/Generic/call-ret42.ll
index 3501288..2e8ed38 100644
--- a/test/CodeGen/Generic/call-ret42.ll
+++ b/test/CodeGen/Generic/call-ret42.ll
@@ -1,3 +1,5 @@
+; RUN: llvm-as < %s | llc
+
 int %foo(int %x) {
   ret int 42
 }
diff --git a/test/CodeGen/Generic/call-void.ll b/test/CodeGen/Generic/call-void.ll
index b23a8d9..1263b98 100644
--- a/test/CodeGen/Generic/call-void.ll
+++ b/test/CodeGen/Generic/call-void.ll
@@ -1,3 +1,5 @@
+; RUN: llvm-as < %s | llc
+
 void %foo() {
   ret void
 }
diff --git a/test/CodeGen/Generic/call2-ret0.ll b/test/CodeGen/Generic/call2-ret0.ll
index 6159e40..a0bde8d 100644
--- a/test/CodeGen/Generic/call2-ret0.ll
+++ b/test/CodeGen/Generic/call2-ret0.ll
@@ -1,3 +1,5 @@
+; RUN: llvm-as < %s | llc
+
 int %bar(int %x) {
   ret int 0
 }
diff --git a/test/CodeGen/Generic/cast-fp.ll b/test/CodeGen/Generic/cast-fp.ll
index 9205fc9..1b80385 100644
--- a/test/CodeGen/Generic/cast-fp.ll
+++ b/test/CodeGen/Generic/cast-fp.ll
@@ -1,3 +1,5 @@
+; RUN: llvm-as < %s | llc
+
 %a_fstr = internal constant [8 x sbyte] c"a = %f\0A\00"
 %a_lstr = internal constant [10 x sbyte] c"a = %lld\0A\00"
 %a_dstr = internal constant [8 x sbyte] c"a = %d\0A\00"
diff --git a/test/CodeGen/Generic/global-ret0.ll b/test/CodeGen/Generic/global-ret0.ll
index f013937..993049d 100644
--- a/test/CodeGen/Generic/global-ret0.ll
+++ b/test/CodeGen/Generic/global-ret0.ll
@@ -1,3 +1,5 @@
+; RUN: llvm-as < %s | llc
+
 %g = global int 0
 
 int %main() {  
diff --git a/test/CodeGen/Generic/hello.ll b/test/CodeGen/Generic/hello.ll
index 3acde34..e68d588 100644
--- a/test/CodeGen/Generic/hello.ll
+++ b/test/CodeGen/Generic/hello.ll
@@ -1,3 +1,5 @@
+; RUN: llvm-as < %s | llc
+
 %.str_1 = internal constant [7 x sbyte] c"hello\0A\00"
 
 declare int %printf(sbyte*, ...)
diff --git a/test/CodeGen/Generic/print-add.ll b/test/CodeGen/Generic/print-add.ll
index 0e998f4..6e5c3c4 100644
--- a/test/CodeGen/Generic/print-add.ll
+++ b/test/CodeGen/Generic/print-add.ll
@@ -1,3 +1,5 @@
+; RUN: llvm-as < %s | llc
+
 %.str_1 = internal constant [4 x sbyte] c"%d\0A\00"
 
 declare int %printf(sbyte*, ...)
diff --git a/test/CodeGen/Generic/print-arith-fp.ll b/test/CodeGen/Generic/print-arith-fp.ll
index da3c558..446dbea 100644
--- a/test/CodeGen/Generic/print-arith-fp.ll
+++ b/test/CodeGen/Generic/print-arith-fp.ll
@@ -1,3 +1,5 @@
+; RUN: llvm-as < %s | llc
+
 %a_str = internal constant [8 x sbyte] c"a = %f\0A\00"
 %b_str = internal constant [8 x sbyte] c"b = %f\0A\00"
 ;; binary ops: arith
diff --git a/test/CodeGen/Generic/print-arith-int.ll b/test/CodeGen/Generic/print-arith-int.ll
index d767190e..b678503 100644
--- a/test/CodeGen/Generic/print-arith-int.ll
+++ b/test/CodeGen/Generic/print-arith-int.ll
@@ -1,3 +1,5 @@
+; RUN: llvm-as < %s | llc
+
 %a_str = internal constant [8 x sbyte] c"a = %d\0A\00"
 %b_str = internal constant [8 x sbyte] c"b = %d\0A\00"
 ;; binary ops: arith
diff --git a/test/CodeGen/Generic/print-int.ll b/test/CodeGen/Generic/print-int.ll
index ee7d3d1..cd3e2b2 100644
--- a/test/CodeGen/Generic/print-int.ll
+++ b/test/CodeGen/Generic/print-int.ll
@@ -1,3 +1,5 @@
+; RUN: llvm-as < %s | llc
+
 %.str_1 = internal constant [4 x sbyte] c"%d\0A\00"
 
 declare int %printf(sbyte*, ...)
diff --git a/test/CodeGen/Generic/print-mul-exp.ll b/test/CodeGen/Generic/print-mul-exp.ll
index ea2882f..0a8fd78 100644
--- a/test/CodeGen/Generic/print-mul-exp.ll
+++ b/test/CodeGen/Generic/print-mul-exp.ll
@@ -1,3 +1,5 @@
+; RUN: llvm-as < %s | llc
+
 %a_str = internal constant [8 x sbyte] c"a = %d\0A\00"
 %a_mul_str = internal constant [13 x sbyte] c"a * %d = %d\0A\00"
 %A = global int 2
diff --git a/test/CodeGen/Generic/print-mul.ll b/test/CodeGen/Generic/print-mul.ll
index e406545..80d2d51 100644
--- a/test/CodeGen/Generic/print-mul.ll
+++ b/test/CodeGen/Generic/print-mul.ll
@@ -1,3 +1,5 @@
+; RUN: llvm-as < %s | llc
+
 %a_str = internal constant [8 x sbyte] c"a = %d\0A\00"
 %b_str = internal constant [8 x sbyte] c"b = %d\0A\00"
 
diff --git a/test/CodeGen/Generic/print-shift.ll b/test/CodeGen/Generic/print-shift.ll
index 71bbbd1..8ce3bac 100644
--- a/test/CodeGen/Generic/print-shift.ll
+++ b/test/CodeGen/Generic/print-shift.ll
@@ -1,3 +1,5 @@
+; RUN: llvm-as < %s | llc
+
 %a_str = internal constant [8 x sbyte] c"a = %d\0A\00"
 %b_str = internal constant [8 x sbyte] c"b = %d\0A\00"
 
diff --git a/test/CodeGen/Generic/ret0.ll b/test/CodeGen/Generic/ret0.ll
index fc70863..439a2f3 100644
--- a/test/CodeGen/Generic/ret0.ll
+++ b/test/CodeGen/Generic/ret0.ll
@@ -1,3 +1,5 @@
+; RUN: llvm-as < %s | llc
+
 int %main() {  
   ret int 0
 }
diff --git a/test/CodeGen/Generic/ret42.ll b/test/CodeGen/Generic/ret42.ll
index 62890e4..ac14231 100644
--- a/test/CodeGen/Generic/ret42.ll
+++ b/test/CodeGen/Generic/ret42.ll
@@ -1,3 +1,5 @@
+; RUN: llvm-as < %s | llc
+
 int %main() {  
   ret int 42
 }