diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2009-07-16 13:33:21 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2009-07-16 13:33:21 +0000 |
commit | c79629536a15673eecfa40ed34985a6d08aca757 (patch) | |
tree | b40615fa891e73c07afc27365c7ff2b1bac909eb | |
parent | e6220fb2305bdc993dc9039fffafd82c609c1c50 (diff) |
Fix test running lines
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75918 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/SystemZ/02-RetAdd.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/SystemZ/02-RetAddImm.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/SystemZ/02-RetAnd.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/SystemZ/02-RetAndImm.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/SystemZ/02-RetOr.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/SystemZ/02-RetOrImm.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/SystemZ/02-RetSub.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/SystemZ/02-RetSubImm.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/SystemZ/02-RetXor.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/SystemZ/02-RetXorImm.ll | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/test/CodeGen/SystemZ/02-RetAdd.ll b/test/CodeGen/SystemZ/02-RetAdd.ll index ae33e0c419..80a9c885f2 100644 --- a/test/CodeGen/SystemZ/02-RetAdd.ll +++ b/test/CodeGen/SystemZ/02-RetAdd.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc +; RUN: llvm-as < %s | llc -march=systemz define i64 @foo(i64 %a, i64 %b) { entry: %c = add i64 %a, %b diff --git a/test/CodeGen/SystemZ/02-RetAddImm.ll b/test/CodeGen/SystemZ/02-RetAddImm.ll index 138b6814e6..c6e53aeb90 100644 --- a/test/CodeGen/SystemZ/02-RetAddImm.ll +++ b/test/CodeGen/SystemZ/02-RetAddImm.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc +; RUN: llvm-as < %s | llc -march=systemz define i64 @foo(i64 %a, i64 %b) { entry: %c = add i64 %a, 1 diff --git a/test/CodeGen/SystemZ/02-RetAnd.ll b/test/CodeGen/SystemZ/02-RetAnd.ll index e174d07728..b6ac5a1285 100644 --- a/test/CodeGen/SystemZ/02-RetAnd.ll +++ b/test/CodeGen/SystemZ/02-RetAnd.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc +; RUN: llvm-as < %s | llc -march=systemz define i64 @foo(i64 %a, i64 %b) { entry: diff --git a/test/CodeGen/SystemZ/02-RetAndImm.ll b/test/CodeGen/SystemZ/02-RetAndImm.ll index 5753723cb1..077ab8680f 100644 --- a/test/CodeGen/SystemZ/02-RetAndImm.ll +++ b/test/CodeGen/SystemZ/02-RetAndImm.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc +; RUN: llvm-as < %s | llc -march=systemz define i64 @foo(i64 %a, i64 %b) { entry: %c = and i64 %a, 1 diff --git a/test/CodeGen/SystemZ/02-RetOr.ll b/test/CodeGen/SystemZ/02-RetOr.ll index ef9d63acf8..2b1791b23d 100644 --- a/test/CodeGen/SystemZ/02-RetOr.ll +++ b/test/CodeGen/SystemZ/02-RetOr.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc +; RUN: llvm-as < %s | llc -march=systemz define i64 @foo(i64 %a, i64 %b) { entry: %c = or i64 %a, %b diff --git a/test/CodeGen/SystemZ/02-RetOrImm.ll b/test/CodeGen/SystemZ/02-RetOrImm.ll index b5fdb00fa2..c06e56fcb7 100644 --- a/test/CodeGen/SystemZ/02-RetOrImm.ll +++ b/test/CodeGen/SystemZ/02-RetOrImm.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc +; RUN: llvm-as < %s | llc -march=systemz define i64 @foo(i64 %a, i64 %b) { entry: %c = or i64 %a, 1 diff --git a/test/CodeGen/SystemZ/02-RetSub.ll b/test/CodeGen/SystemZ/02-RetSub.ll index 16ade04cef..eb3bb69a24 100644 --- a/test/CodeGen/SystemZ/02-RetSub.ll +++ b/test/CodeGen/SystemZ/02-RetSub.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc +; RUN: llvm-as < %s | llc -march=systemz define i64 @foo(i64 %a, i64 %b) { entry: diff --git a/test/CodeGen/SystemZ/02-RetSubImm.ll b/test/CodeGen/SystemZ/02-RetSubImm.ll index f90415f9ff..81d50d42d8 100644 --- a/test/CodeGen/SystemZ/02-RetSubImm.ll +++ b/test/CodeGen/SystemZ/02-RetSubImm.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc +; RUN: llvm-as < %s | llc -march=systemz define i64 @foo(i64 %a, i64 %b) { entry: diff --git a/test/CodeGen/SystemZ/02-RetXor.ll b/test/CodeGen/SystemZ/02-RetXor.ll index b15d9460a6..9287e7704b 100644 --- a/test/CodeGen/SystemZ/02-RetXor.ll +++ b/test/CodeGen/SystemZ/02-RetXor.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc +; RUN: llvm-as < %s | llc -march=systemz define i64 @foo(i64 %a, i64 %b) { entry: %c = xor i64 %a, %b diff --git a/test/CodeGen/SystemZ/02-RetXorImm.ll b/test/CodeGen/SystemZ/02-RetXorImm.ll index f1f835a0ed..5addc7148d 100644 --- a/test/CodeGen/SystemZ/02-RetXorImm.ll +++ b/test/CodeGen/SystemZ/02-RetXorImm.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc +; RUN: llvm-as < %s | llc -march=systemz define i64 @foo(i64 %a, i64 %b) { entry: %c = xor i64 %a, 1 |