Skip to content

Commit

Permalink
Remove obsolete -f flags.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79992 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Dan Gohman committed Aug 25, 2009
1 parent baa2639 commit fea1dd0
Show file tree
Hide file tree
Showing 369 changed files with 406 additions and 406 deletions.
2 changes: 1 addition & 1 deletion test/Assembler/2002-01-24-BadSymbolTableAssert.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

; This testcase failed due to a bad assertion in SymbolTable.cpp, removed in
; the 1.20 revision. Basically the symbol table assumed that if there was an
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2002-01-24-ValueRefineAbsType.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

; This testcase used to fail due to a lack of this diff in Value.cpp:
; diff -r1.16 Value.cpp
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2002-02-19-TypeParsing.ll
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

%Hosp = type { i32, i32, i32, { \2*, { i32, i32, i32, { [4 x \3], \2, \5, %Hosp, i32, i32 }* }*, \2* }, { \2*, { i32, i32, i32, { [4 x \3], \2, \5, %Hosp, i32, i32 }* }*, \2* }, { \2*, { i32, i32, i32, { [4 x \3], \2, \5, %Hosp, i32, i32 }* }*, \2* }, { \2*, { i32, i32, i32, { [4 x \3], \2, \5, %Hosp, i32, i32 }* }*, \2* } }
2 changes: 1 addition & 1 deletion test/Assembler/2002-03-08-NameCollision.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

; Method arguments were being checked for collisions at the global scope before
; the method object was created by the parser. Because of this, false
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2002-03-08-NameCollision2.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

; Another name collision problem. Here the problem was that if a forward
; declaration for a method was found, that this would cause spurious conflicts
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2002-04-04-PureVirtMethCall.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

type { { \2 *, \4 ** },
{ \2 *, \4 ** }
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2002-04-04-PureVirtMethCall2.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

%t = type { { \2*, \2 },
{ \2*, \2 }
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2002-04-05-TypeParsing.ll
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

%Hosp = type { { \2*, { \2, %Hosp }* }, { \2*, { \2, %Hosp }* } }
2 changes: 1 addition & 1 deletion test/Assembler/2002-05-02-InvalidForwardRef.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null
; It looks like the assembler is not forward resolving the function declaraion
; correctly.

Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2002-05-02-ParseError.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

%T = type i32 *

Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2002-07-08-HugePerformanceProblem.ll
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
; This file takes about 48 __MINUTES__ to assemble using as. This is WAY too
; long. The type resolution code needs to be sped up a lot.
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null
%ALL_INTERSECTIONS_METHOD = type i32 (%OBJECT*, %RAY*, %ISTACK*)*
%BBOX = type { %BBOX_VECT, %BBOX_VECT }
%BBOX_TREE = type { i16, i16, %BBOX, %BBOX_TREE** }
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2002-07-25-ParserAssertionFailure.ll
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
; Make sure we don't get an assertion failure, even though this is a parse
; error
; RUN: not llvm-as %s -o /dev/null -f |& grep {'@foo' defined with}
; RUN: not llvm-as %s -o /dev/null |& grep {'@foo' defined with}

%ty = type void (i32)

Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2002-08-15-CastAmbiguity.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

define void @test(i32 %X) {
call void @test( i32 6 )
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2002-08-15-ConstantExprProblem.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

@.LC0 = internal global [12 x i8] c"hello world\00" ; <[12 x i8]*> [#uses=1]

Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2002-08-15-UnresolvedGlobalReference.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

@.LC0 = internal global [12 x i8] c"hello world\00" ; <[12 x i8]*> [#uses=1]

Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2002-08-22-DominanceProblem.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

; Dominance relationships is not calculated correctly for unreachable blocks,
; which causes the verifier to barf on this input.
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2002-10-08-LargeArrayPerformance.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null
; This testcase comes from the following really simple c file:
;; int foo[30000]
;;; We should not be soo slow for such a simple case!
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2002-10-15-NameClash.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

declare i32 @"ArrayRef"([100 x i32] * %Array)

Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2002-12-15-GlobalResolve.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

@X = external global i32*
@X1 = external global %T*
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2003-01-30-UnsignedString.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

@spell_order = global [4 x i8] c"\FF\00\F7\00"

2 changes: 1 addition & 1 deletion test/Assembler/2003-04-25-UnresolvedGlobalReference.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null
; There should be absolutely no problem with this testcase.

define i32 @test(i32 %arg1, i32 %arg2) {
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2003-05-15-AssemblerProblem.ll
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
; This bug was caused by two CPR's existing for the same global variable,
; colliding in the Module level CPR map.
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

define void @test() {
call void (...)* bitcast (void (i16*, i32)* @AddString to void (...)*)( i16* null, i32 0 )
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2003-05-15-SwitchBug.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

; Check minimal switch statement

Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2003-05-21-ConstantShiftExpr.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null
; Test that shift instructions can be used in constant expressions.

global i32 3670016
2 changes: 1 addition & 1 deletion test/Assembler/2003-05-21-EmptyStructTest.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

; The old C front-end never generated empty structures, now the new one
; can. For some reason we never handled them in the parser. Weird.
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2003-06-30-RecursiveTypeProblem.ll
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

%MidFnTy = type void (%MidFnTy*)
2 changes: 1 addition & 1 deletion test/Assembler/2003-10-04-NotMergingGlobalConstants.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

%T = type i32
@X = global i32* null ; <i32**> [#uses=0]
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2003-12-30-TypeMapInvalidMemory.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: not llvm-as %s -o /dev/null -f |& grep {use of undefined type named 'struct.D_Scope'}
; RUN: not llvm-as %s -o /dev/null |& grep {use of undefined type named 'struct.D_Scope'}
; END.

@d_reduction_0_dparser_gram = global {
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2004-02-27-SelfUseAssertError.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

; %inc2 uses it's own value, but that's ok, as it's unreachable!

Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2004-04-04-GetElementPtrIndexTypes.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

define i32* @t1({ float, i32 }* %X) {
%W = getelementptr { float, i32 }* %X, i32 20, i32 1 ; <i32*> [#uses=0]
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2004-10-22-BCWriterUndefBug.ll
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
;; The bytecode writer was trying to treat undef values as ConstantArray's when
;; they looked like strings.
;; RUN: llvm-as %s -o /dev/null -f
;; RUN: llvm-as %s -o /dev/null
@G = internal global [8 x i8] undef

2 changes: 1 addition & 1 deletion test/Assembler/2004-11-28-InvalidTypeCrash.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; Test for PR463. This program is erroneous, but should not crash llvm-as.
; RUN: not llvm-as %s -o /dev/null -f |& grep {invalid type for null constant}
; RUN: not llvm-as %s -o /dev/null |& grep {invalid type for null constant}

@.FOO = internal global %struct.none zeroinitializer
2 changes: 1 addition & 1 deletion test/Assembler/2005-01-31-CallingAggregateFunction.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

define void @test() {
call {i32} @foo()
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2007-01-02-Undefined-Arg-Type.ll
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
; The assembler should catch an undefined argument type .
; RUN: not llvm-as %s -o /dev/null -f |& grep {use of undefined type named 'typedef.bc_struct'}
; RUN: not llvm-as %s -o /dev/null |& grep {use of undefined type named 'typedef.bc_struct'}

; %typedef.bc_struct = type opaque

Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2007-01-05-Cmp-ConstExpr.ll
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
; Test Case for PR1080
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

@str = internal constant [4 x i8] c"-ga\00" ; <[4 x i8]*> [#uses=2]

Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2007-01-16-CrashOnBadCast.ll
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
; PR1117
; RUN: not llvm-as %s -o /dev/null -f |& grep {invalid cast opcode for cast from}
; RUN: not llvm-as %s -o /dev/null |& grep {invalid cast opcode for cast from}

define i8* @nada(i64 %X) {
%result = trunc i64 %X to i8*
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2007-01-16-CrashOnBadCast2.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; PR1117
; RUN: not llvm-as %s -o /dev/null -f |& grep {invalid cast opcode for cast from}
; RUN: not llvm-as %s -o /dev/null |& grep {invalid cast opcode for cast from}

@X = constant i8* trunc (i64 0 to i8*)
2 changes: 1 addition & 1 deletion test/Assembler/2007-03-18-InvalidNumberedVar.ll
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
; PR 1258
; RUN: not llvm-as < %s >/dev/null -f |& grep {'%0' defined with type 'i1'}
; RUN: not llvm-as < %s >/dev/null |& grep {'%0' defined with type 'i1'}

define i32 @test1(i32 %a, i32 %b) {
entry:
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2008-09-02-FunctionNotes2.ll
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
; Test function notes
; RUN: not llvm-as %s -o /dev/null -f |& grep "Attributes noinline alwaysinline are incompatible"
; RUN: not llvm-as %s -o /dev/null |& grep "Attributes noinline alwaysinline are incompatible"
define void @fn1() alwaysinline noinline {
ret void
}
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/2009-07-24-ZeroArgGEP.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

@foo = global i32 0
@bar = constant i32* getelementptr(i32* @foo)
Expand Down
2 changes: 1 addition & 1 deletion test/Assembler/select.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null


define i32 @test(i1 %C, i32 %V1, i32 %V2) {
Expand Down
2 changes: 1 addition & 1 deletion test/Bitcode/memcpy.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as %s -o /dev/null -f
; RUN: llvm-as %s -o /dev/null

define void @test(i32* %P, i32* %Q) {
entry:
Expand Down
2 changes: 1 addition & 1 deletion test/Bitcode/metadata-2.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as < %s | llvm-dis -f -o /dev/null
; RUN: llvm-as < %s | llvm-dis -o /dev/null
type { %object.ModuleInfo.__vtbl*, i8*, %"byte[]", %1, %"ClassInfo[]", i32, void ()*, void ()*, void ()*, i8*, void ()* } ; type %0
type { i64, %object.ModuleInfo* } ; type %1
type { i32, void ()* } ; type %2
Expand Down
2 changes: 1 addition & 1 deletion test/Bitcode/metadata.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as < %s | llvm-dis -f -o /dev/null
; RUN: llvm-as < %s | llvm-dis -o /dev/null

!llvm.foo = !{!0}
!0 = metadata !{i32 42}
Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/ARM/aliases.ll
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
; RUN: llvm-as < %s | \
; RUN: llc -mtriple=arm-linux-gnueabi -o %t -f
; RUN: llc -mtriple=arm-linux-gnueabi -o %t
; RUN: grep set %t | count 5
; RUN: grep globl %t | count 4
; RUN: grep weak %t | count 1
Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/Alpha/add.ll
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
;test all the shifted and signextending adds and subs with and without consts
;
; RUN: llvm-as < %s | llc -march=alpha -o %t.s -f
; RUN: llvm-as < %s | llc -march=alpha -o %t.s
; RUN: grep { addl} %t.s | count 2
; RUN: grep { addq} %t.s | count 2
; RUN: grep { subl} %t.s | count 2
Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/CPP/2009-05-01-Long-Double.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as < %s | llc -march=cpp -cppgen=program -f -o %t
; RUN: llvm-as < %s | llc -march=cpp -cppgen=program -o %t

define x86_fp80 @some_func() nounwind {
entry:
Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/CPP/2009-05-04-CondBr.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as < %s | llc -march=cpp -cppgen=program -f -o %t
; RUN: llvm-as < %s | llc -march=cpp -cppgen=program -o %t
; RUN: grep "BranchInst::Create(label_if_then, label_if_end, int1_cmp, label_entry);" %t

define i32 @some_func(i32 %a) nounwind {
Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/CellSPU/rotate_ops.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as -o - %s | llc -march=cellspu -f -o %t1.s
; RUN: llvm-as -o - %s | llc -march=cellspu -o %t1.s
; RUN: grep rot %t1.s | count 85
; RUN: grep roth %t1.s | count 8
; RUN: grep roti.*5 %t1.s | count 1
Expand Down
4 changes: 2 additions & 2 deletions test/CodeGen/Generic/Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Makefile for running ad-hoc custom LLVM tests
#
%.bc: %.ll
llvm-as -f $<
llvm-as $<

%.llc.s: %.bc
llc -f $< -o $@
llc $< -o $@

%.gcc.s: %.c
gcc -O0 -S $< -o $@
Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/Generic/nested-select.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as < %s | llc -o /dev/null -f
; RUN: llvm-as < %s | llc -o /dev/null

; Test that select of a select works

Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/Generic/switch-lower-feature-2.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as < %s | llc -march=x86 -o %t -f
; RUN: llvm-as < %s | llc -march=x86 -o %t
; RUN: grep jb %t | count 1
; RUN: grep \\\$6 %t | count 2
; RUN: grep 1024 %t | count 1
Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/Mips/2008-06-05-Carry.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as < %s | llc -march=mips -f -o %t
; RUN: llvm-as < %s | llc -march=mips -o %t
; RUN: grep subu %t | count 2
; RUN: grep addu %t | count 4

Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/Mips/2008-07-07-IntDoubleConvertions.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as < %s | llc -march=mips -f -o %t
; RUN: llvm-as < %s | llc -march=mips -o %t
; RUN: grep __floatsidf %t | count 1
; RUN: grep __floatunsidf %t | count 1
; RUN: grep __fixdfsi %t | count 1
Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/Mips/2008-07-15-InternalConstant.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as < %s | llc -march=mips -f -o %t
; RUN: llvm-as < %s | llc -march=mips -o %t
; RUN: grep {rodata.str1.4,"aMS",@progbits} %t | count 1
; RUN: grep {r.data,} %t | count 1
; RUN: grep {\%hi} %t | count 2
Expand Down
4 changes: 2 additions & 2 deletions test/CodeGen/Mips/2008-07-15-SmallSection.ll
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
; RUN: llvm-as < %s | llc -mips-ssection-threshold=8 -march=mips -f -o %t0
; RUN: llvm-as < %s | llc -mips-ssection-threshold=0 -march=mips -f -o %t1
; RUN: llvm-as < %s | llc -mips-ssection-threshold=8 -march=mips -o %t0
; RUN: llvm-as < %s | llc -mips-ssection-threshold=0 -march=mips -o %t1
; RUN: grep {sdata} %t0 | count 1
; RUN: grep {sbss} %t0 | count 1
; RUN: grep {gp_rel} %t0 | count 2
Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/Mips/2008-07-16-SignExtInReg.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as < %s | llc -march=mips -f -o %t
; RUN: llvm-as < %s | llc -march=mips -o %t
; RUN: grep seh %t | count 1
; RUN: grep seb %t | count 1

Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/Mips/2008-07-22-Cstpool.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as < %s | llc -march=mips -f -o %t
; RUN: llvm-as < %s | llc -march=mips -o %t
; RUN: grep {CPI\[01\]_\[01\]:} %t | count 2
; RUN: grep {rodata.cst4,"aM",@progbits} %t | count 1
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:32:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64"
Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/Mips/2008-07-23-fpcmp.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as < %s | llc -march=mips -f -o %t
; RUN: llvm-as < %s | llc -march=mips -o %t
; RUN: grep {c\\..*\\.s} %t | count 3
; RUN: grep {bc1\[tf\]} %t | count 3

Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/Mips/2008-07-31-fcopysign.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as < %s | llc -march=mips -f -o %t
; RUN: llvm-as < %s | llc -march=mips -o %t
; RUN: grep abs.s %t | count 1
; RUN: grep neg.s %t | count 1

Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/Mips/2008-08-01-AsmInline.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as < %s | llc -march=mips -f -o %t
; RUN: llvm-as < %s | llc -march=mips -o %t
; RUN: grep mfhi %t | count 1
; RUN: grep mflo %t | count 1
; RUN: grep multu %t | count 1
Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/Mips/2008-08-03-fabs64.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as < %s | llc -march=mips -f -o %t
; RUN: llvm-as < %s | llc -march=mips -o %t
; RUN: grep {lui.*32767} %t | count 1
; RUN: grep {ori.*65535} %t | count 1

Expand Down
2 changes: 1 addition & 1 deletion test/CodeGen/Mips/2008-08-04-Bitconvert.ll
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-as < %s | llc -march=mips -f -o %t
; RUN: llvm-as < %s | llc -march=mips -o %t
; RUN: grep mtc1 %t | count 1
; RUN: grep mfc1 %t | count 1

Expand Down
Loading

0 comments on commit fea1dd0

Please sign in to comment.