Remove obsolete -f flags.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79992 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman
2009-08-25 15:38:29 +00:00
parent baa26395cc
commit fea1dd0804
369 changed files with 406 additions and 406 deletions

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
@.LC0 = internal global [10 x i8] c"argc: %d\0A\00" ; <[10 x i8]*> [#uses=1]

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
define i32 @foo(i32 %X, i32 %Y, double %A) {

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o %t.bc -f
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
define i32 @main() {

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
define i32 @main() {

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
; We were accidentally inverting the signedness of right shifts. Whoops.

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
define i32 @main() {

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
define i32 @bar(i8* %X) {

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
target datalayout = "e-p:32:32"

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
; Testcase distilled from 256.bzip2.

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
; Testcase distilled from 256.bzip2.

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
; This testcase failed to work because two variable sized allocas confused the

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
;

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
; This testcase exposes a bug in the local register allocator where it runs out

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
@A = global i32 0 ; <i32*> [#uses=1]

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli -force-interpreter=true %t.bc | grep 1
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32"

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
@.LC0 = internal global [12 x i8] c"Hello World\00" ; <[12 x i8]*> [#uses=1]

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
@X = global i32 7 ; <i32*> [#uses=0]

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
define i32 @main() {

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
define i32 @bar() {

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
define i32 @main() {

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
; test unconditional branch

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
declare void @exit(i32)

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
define i32 @foo() {

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
; This tests to make sure that we can evaluate weird constant expressions

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
define double @test(double* %DP, double %Arg) {

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
define void @test(i8* %P, i16* %P.upgrd.1, i32* %P.upgrd.2, i64* %P.upgrd.3) {

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
define i32 @main() {

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
define i32 @main() {

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
define i32 @main() {

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
; test phi node

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
; test return instructions

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
define i32 @main() {

View File

@@ -1,4 +1,4 @@
; RUN: llvm-as %s -f -o %t.bc
; RUN: llvm-as %s -o %t.bc
; RUN: lli %t.bc > /dev/null
define i32 @main() {