diff options
Diffstat (limited to 'llvm/test/FrontendC')
104 files changed, 104 insertions, 104 deletions
diff --git a/llvm/test/FrontendC/2002-01-23-LoadQISIReloadFailure.c b/llvm/test/FrontendC/2002-01-23-LoadQISIReloadFailure.c index 258d3cc0e3d..1779a99942e 100644 --- a/llvm/test/FrontendC/2002-01-23-LoadQISIReloadFailure.c +++ b/llvm/test/FrontendC/2002-01-23-LoadQISIReloadFailure.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null /* Regression test. Just compile .c -> .ll to test */ int foo(void) { diff --git a/llvm/test/FrontendC/2002-01-24-ComplexSpaceInType.c b/llvm/test/FrontendC/2002-01-24-ComplexSpaceInType.c index 9559d5b37b7..13d92c7306e 100644 --- a/llvm/test/FrontendC/2002-01-24-ComplexSpaceInType.c +++ b/llvm/test/FrontendC/2002-01-24-ComplexSpaceInType.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null // This caused generation of the following type name: // %Array = uninitialized global [10 x %complex int] diff --git a/llvm/test/FrontendC/2002-01-24-HandleCallInsnSEGV.c b/llvm/test/FrontendC/2002-01-24-HandleCallInsnSEGV.c index 09029fb945e..e619cf46992 100644 --- a/llvm/test/FrontendC/2002-01-24-HandleCallInsnSEGV.c +++ b/llvm/test/FrontendC/2002-01-24-HandleCallInsnSEGV.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null void *dlclose(void*); diff --git a/llvm/test/FrontendC/2002-02-13-ConditionalInCall.c b/llvm/test/FrontendC/2002-02-13-ConditionalInCall.c index 0dad6ff5c2f..f361088c1cf 100644 --- a/llvm/test/FrontendC/2002-02-13-ConditionalInCall.c +++ b/llvm/test/FrontendC/2002-02-13-ConditionalInCall.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null /* Test problem where bad code was generated with a ?: statement was in a function call argument */ diff --git a/llvm/test/FrontendC/2002-02-13-ReloadProblem.c b/llvm/test/FrontendC/2002-02-13-ReloadProblem.c index ab9b56da3e3..2ae97b72276 100644 --- a/llvm/test/FrontendC/2002-02-13-ReloadProblem.c +++ b/llvm/test/FrontendC/2002-02-13-ReloadProblem.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null /* This triggered a problem in reload, fixed by disabling most of the * steps of compilation in GCC. Before this change, the code went through diff --git a/llvm/test/FrontendC/2002-02-13-TypeVarNameCollision.c b/llvm/test/FrontendC/2002-02-13-TypeVarNameCollision.c index ec334013ae0..2dede68a38d 100644 --- a/llvm/test/FrontendC/2002-02-13-TypeVarNameCollision.c +++ b/llvm/test/FrontendC/2002-02-13-TypeVarNameCollision.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null /* This testcase causes a symbol table collision. Type names and variable * names should be in distinct namespaces diff --git a/llvm/test/FrontendC/2002-02-13-UnnamedLocal.c b/llvm/test/FrontendC/2002-02-13-UnnamedLocal.c index 6fdc7efdd3a..85aa615205c 100644 --- a/llvm/test/FrontendC/2002-02-13-UnnamedLocal.c +++ b/llvm/test/FrontendC/2002-02-13-UnnamedLocal.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null /* Testcase for a problem where GCC allocated xqic to a register, * and did not have a VAR_DECL that explained the stack slot to LLVM. diff --git a/llvm/test/FrontendC/2002-02-14-EntryNodePreds.c b/llvm/test/FrontendC/2002-02-14-EntryNodePreds.c index f1e01515fd7..851af912174 100644 --- a/llvm/test/FrontendC/2002-02-14-EntryNodePreds.c +++ b/llvm/test/FrontendC/2002-02-14-EntryNodePreds.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null /* GCC Used to generate code that contained a branch to the entry node of * the do_merge function. This is illegal LLVM code. To fix this, GCC now diff --git a/llvm/test/FrontendC/2002-02-16-RenamingTest.c b/llvm/test/FrontendC/2002-02-16-RenamingTest.c index 952af90c87e..6042b67dc0c 100644 --- a/llvm/test/FrontendC/2002-02-16-RenamingTest.c +++ b/llvm/test/FrontendC/2002-02-16-RenamingTest.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null /* test that locals are renamed with . notation */ diff --git a/llvm/test/FrontendC/2002-02-17-ArgumentAddress.c b/llvm/test/FrontendC/2002-02-17-ArgumentAddress.c index 937929559fe..acd7e37a756 100644 --- a/llvm/test/FrontendC/2002-02-17-ArgumentAddress.c +++ b/llvm/test/FrontendC/2002-02-17-ArgumentAddress.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null int test(int X) { return X; diff --git a/llvm/test/FrontendC/2002-02-18-64bitConstant.c b/llvm/test/FrontendC/2002-02-18-64bitConstant.c index 31e5c6eada4..a88587a960d 100644 --- a/llvm/test/FrontendC/2002-02-18-64bitConstant.c +++ b/llvm/test/FrontendC/2002-02-18-64bitConstant.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null /* GCC wasn't handling 64 bit constants right fixed */ diff --git a/llvm/test/FrontendC/2002-02-18-StaticData.c b/llvm/test/FrontendC/2002-02-18-StaticData.c index 10439c37309..76cb0e670a7 100644 --- a/llvm/test/FrontendC/2002-02-18-StaticData.c +++ b/llvm/test/FrontendC/2002-02-18-StaticData.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null double FOO = 17; diff --git a/llvm/test/FrontendC/2002-03-11-LargeCharInString.c b/llvm/test/FrontendC/2002-03-11-LargeCharInString.c index d8a1671fc77..b383d03f799 100644 --- a/llvm/test/FrontendC/2002-03-11-LargeCharInString.c +++ b/llvm/test/FrontendC/2002-03-11-LargeCharInString.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null #include <string.h> diff --git a/llvm/test/FrontendC/2002-03-12-ArrayInitialization.c b/llvm/test/FrontendC/2002-03-12-ArrayInitialization.c index d6cf44625bd..1997a3cd0d9 100644 --- a/llvm/test/FrontendC/2002-03-12-ArrayInitialization.c +++ b/llvm/test/FrontendC/2002-03-12-ArrayInitialization.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null /* GCC would generate bad code if not enough initializers are specified for an array. diff --git a/llvm/test/FrontendC/2002-03-12-StructInitialize.c b/llvm/test/FrontendC/2002-03-12-StructInitialize.c index 5174ad4906d..9eb11e187a1 100644 --- a/llvm/test/FrontendC/2002-03-12-StructInitialize.c +++ b/llvm/test/FrontendC/2002-03-12-StructInitialize.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null typedef struct Connection_Type { diff --git a/llvm/test/FrontendC/2002-03-12-StructInitializer.c b/llvm/test/FrontendC/2002-03-12-StructInitializer.c index cf2ba4e8cf8..fa333b78a95 100644 --- a/llvm/test/FrontendC/2002-03-12-StructInitializer.c +++ b/llvm/test/FrontendC/2002-03-12-StructInitializer.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null /* GCC was not emitting string constants of the correct length when * embedded into a structure field like this. It thought the strlength diff --git a/llvm/test/FrontendC/2002-03-14-BrokenPHINode.c b/llvm/test/FrontendC/2002-03-14-BrokenPHINode.c index 16d9bc7814f..48d9ab705a7 100644 --- a/llvm/test/FrontendC/2002-03-14-BrokenPHINode.c +++ b/llvm/test/FrontendC/2002-03-14-BrokenPHINode.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null /* GCC was generating PHI nodes with an arity < #pred of the basic block the * PHI node lived in. This was breaking LLVM because the number of entries diff --git a/llvm/test/FrontendC/2002-03-14-BrokenSSA.c b/llvm/test/FrontendC/2002-03-14-BrokenSSA.c index 01f259738e3..9dc674aea27 100644 --- a/llvm/test/FrontendC/2002-03-14-BrokenSSA.c +++ b/llvm/test/FrontendC/2002-03-14-BrokenSSA.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null /* This code used to break GCC's SSA computation code. It would create uses of B & C that are not dominated by their definitions. See: diff --git a/llvm/test/FrontendC/2002-03-14-QuotesInStrConst.c b/llvm/test/FrontendC/2002-03-14-QuotesInStrConst.c index 42f82bfa895..63eaeef46a4 100644 --- a/llvm/test/FrontendC/2002-03-14-QuotesInStrConst.c +++ b/llvm/test/FrontendC/2002-03-14-QuotesInStrConst.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null /* GCC was not escaping quotes in string constants correctly, so this would * get emitted: diff --git a/llvm/test/FrontendC/2002-04-07-SwitchStmt.c b/llvm/test/FrontendC/2002-04-07-SwitchStmt.c index 79632c9eb8a..33e9c3d7a78 100644 --- a/llvm/test/FrontendC/2002-04-07-SwitchStmt.c +++ b/llvm/test/FrontendC/2002-04-07-SwitchStmt.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null int printf(const char *, ...); int foo(); diff --git a/llvm/test/FrontendC/2002-04-08-LocalArray.c b/llvm/test/FrontendC/2002-04-08-LocalArray.c index 75475a1b3bd..1dc51a09284 100644 --- a/llvm/test/FrontendC/2002-04-08-LocalArray.c +++ b/llvm/test/FrontendC/2002-04-08-LocalArray.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null /* GCC is not outputting the static array to the LLVM backend, so bad things * happen. Note that if this is defined static, everything seems fine. diff --git a/llvm/test/FrontendC/2002-04-09-StructRetVal.c b/llvm/test/FrontendC/2002-04-09-StructRetVal.c index c655e4a4d05..de3b6fc26e0 100644 --- a/llvm/test/FrontendC/2002-04-09-StructRetVal.c +++ b/llvm/test/FrontendC/2002-04-09-StructRetVal.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null struct S { int i; diff --git a/llvm/test/FrontendC/2002-04-10-StructParameters.c b/llvm/test/FrontendC/2002-04-10-StructParameters.c index 9db6a132bc1..aaaba2abdde 100644 --- a/llvm/test/FrontendC/2002-04-10-StructParameters.c +++ b/llvm/test/FrontendC/2002-04-10-StructParameters.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null typedef struct { diff --git a/llvm/test/FrontendC/2002-05-23-StaticValues.c b/llvm/test/FrontendC/2002-05-23-StaticValues.c index bf583e203d3..a5753b95f16 100644 --- a/llvm/test/FrontendC/2002-05-23-StaticValues.c +++ b/llvm/test/FrontendC/2002-05-23-StaticValues.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null /* Make sure the frontend is correctly marking static stuff as internal! */ diff --git a/llvm/test/FrontendC/2002-05-23-TypeNameCollision.c b/llvm/test/FrontendC/2002-05-23-TypeNameCollision.c index 43faf97b1e6..25d114965d4 100644 --- a/llvm/test/FrontendC/2002-05-23-TypeNameCollision.c +++ b/llvm/test/FrontendC/2002-05-23-TypeNameCollision.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null /* Testcase for when struct tag conflicts with typedef name... grr */ diff --git a/llvm/test/FrontendC/2002-05-24-Alloca.c b/llvm/test/FrontendC/2002-05-24-Alloca.c index ac5b78d0c99..128bc8b7cfc 100644 --- a/llvm/test/FrontendC/2002-05-24-Alloca.c +++ b/llvm/test/FrontendC/2002-05-24-Alloca.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null #include <string.h> #include <stdio.h> diff --git a/llvm/test/FrontendC/2002-06-25-FWriteInterfaceFailure.c b/llvm/test/FrontendC/2002-06-25-FWriteInterfaceFailure.c index fb1b54bf72e..4380dc7b227 100644 --- a/llvm/test/FrontendC/2002-06-25-FWriteInterfaceFailure.c +++ b/llvm/test/FrontendC/2002-06-25-FWriteInterfaceFailure.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null #include <stdio.h> diff --git a/llvm/test/FrontendC/2002-07-14-MiscListTests.c b/llvm/test/FrontendC/2002-07-14-MiscListTests.c index baae585f6c3..4a5459ad713 100644 --- a/llvm/test/FrontendC/2002-07-14-MiscListTests.c +++ b/llvm/test/FrontendC/2002-07-14-MiscListTests.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null // Test list stuff diff --git a/llvm/test/FrontendC/2002-07-14-MiscTests.c b/llvm/test/FrontendC/2002-07-14-MiscTests.c index 02703e26916..57c412083a6 100644 --- a/llvm/test/FrontendC/2002-07-14-MiscTests.c +++ b/llvm/test/FrontendC/2002-07-14-MiscTests.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -w -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -w -S %s -o - | llvm-as -o /dev/null /* These are random tests that I used when working on the GCC frontend originally. */ diff --git a/llvm/test/FrontendC/2002-07-14-MiscTests2.c b/llvm/test/FrontendC/2002-07-14-MiscTests2.c index ac58926abf2..f2c7c81c4da 100644 --- a/llvm/test/FrontendC/2002-07-14-MiscTests2.c +++ b/llvm/test/FrontendC/2002-07-14-MiscTests2.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null // Test ?: in function calls diff --git a/llvm/test/FrontendC/2002-07-14-MiscTests3.c b/llvm/test/FrontendC/2002-07-14-MiscTests3.c index 773193cefd4..7ef7e232d99 100644 --- a/llvm/test/FrontendC/2002-07-14-MiscTests3.c +++ b/llvm/test/FrontendC/2002-07-14-MiscTests3.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -w -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -w -S %s -o - | llvm-as -o /dev/null diff --git a/llvm/test/FrontendC/2002-07-16-HardStringInit.c b/llvm/test/FrontendC/2002-07-16-HardStringInit.c index d1d03216ce1..2785e5189d9 100644 --- a/llvm/test/FrontendC/2002-07-16-HardStringInit.c +++ b/llvm/test/FrontendC/2002-07-16-HardStringInit.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null char auto_kibitz_list[100][20] = { {"diepx"}, diff --git a/llvm/test/FrontendC/2002-07-17-StringConstant.c b/llvm/test/FrontendC/2002-07-17-StringConstant.c index 8a392033f39..9ba0c25213d 100644 --- a/llvm/test/FrontendC/2002-07-17-StringConstant.c +++ b/llvm/test/FrontendC/2002-07-17-StringConstant.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null char * foo() { return "\\begin{"; } diff --git a/llvm/test/FrontendC/2002-07-29-Casts.c b/llvm/test/FrontendC/2002-07-29-Casts.c index 6794e80b5e3..44bb6101955 100644 --- a/llvm/test/FrontendC/2002-07-29-Casts.c +++ b/llvm/test/FrontendC/2002-07-29-Casts.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null #include <stdlib.h> #include <stdio.h> diff --git a/llvm/test/FrontendC/2002-07-30-SubregSetAssertion.c b/llvm/test/FrontendC/2002-07-30-SubregSetAssertion.c index 6d4f9f62058..af72eda6524 100644 --- a/llvm/test/FrontendC/2002-07-30-SubregSetAssertion.c +++ b/llvm/test/FrontendC/2002-07-30-SubregSetAssertion.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null union X { diff --git a/llvm/test/FrontendC/2002-07-30-UnionTest.c b/llvm/test/FrontendC/2002-07-30-UnionTest.c index b2c481e4079..c931b8024f0 100644 --- a/llvm/test/FrontendC/2002-07-30-UnionTest.c +++ b/llvm/test/FrontendC/2002-07-30-UnionTest.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null union X; struct Empty {}; diff --git a/llvm/test/FrontendC/2002-07-30-VarArgsCallFailure.c b/llvm/test/FrontendC/2002-07-30-VarArgsCallFailure.c index b37a462220b..5d93947a727 100644 --- a/llvm/test/FrontendC/2002-07-30-VarArgsCallFailure.c +++ b/llvm/test/FrontendC/2002-07-30-VarArgsCallFailure.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null int tcount; void test(char *, const char*, int); diff --git a/llvm/test/FrontendC/2002-07-31-BadAssert.c b/llvm/test/FrontendC/2002-07-31-BadAssert.c index 5801d03a099..5c3d74cfb6b 100644 --- a/llvm/test/FrontendC/2002-07-31-BadAssert.c +++ b/llvm/test/FrontendC/2002-07-31-BadAssert.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null typedef struct { diff --git a/llvm/test/FrontendC/2002-07-31-SubregFailure.c b/llvm/test/FrontendC/2002-07-31-SubregFailure.c index 15573f9128a..72fcb496cb0 100644 --- a/llvm/test/FrontendC/2002-07-31-SubregFailure.c +++ b/llvm/test/FrontendC/2002-07-31-SubregFailure.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null typedef union { diff --git a/llvm/test/FrontendC/2002-08-02-UnionTest.c b/llvm/test/FrontendC/2002-08-02-UnionTest.c index e0862ed10cf..e2b8c3dd401 100644 --- a/llvm/test/FrontendC/2002-08-02-UnionTest.c +++ b/llvm/test/FrontendC/2002-08-02-UnionTest.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null /* In this testcase, the return value of foo() is being promotedto a register * which breaks stuff diff --git a/llvm/test/FrontendC/2002-08-19-RecursiveLocals.c b/llvm/test/FrontendC/2002-08-19-RecursiveLocals.c index e5007af7254..59220ac9b0d 100644 --- a/llvm/test/FrontendC/2002-08-19-RecursiveLocals.c +++ b/llvm/test/FrontendC/2002-08-19-RecursiveLocals.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null /* This testcase doesn't actually test a bug, it's just the result of me * figuring out the syntax for forward declaring a static variable. */ diff --git a/llvm/test/FrontendC/2002-09-08-PointerShifts.c b/llvm/test/FrontendC/2002-09-08-PointerShifts.c index cc7e91a7f9a..86ff2f98afc 100644 --- a/llvm/test/FrontendC/2002-09-08-PointerShifts.c +++ b/llvm/test/FrontendC/2002-09-08-PointerShifts.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null int foo(int *A, unsigned X) { diff --git a/llvm/test/FrontendC/2002-09-18-UnionProblem.c b/llvm/test/FrontendC/2002-09-18-UnionProblem.c index 56ec6cec8ed..54588f12142 100644 --- a/llvm/test/FrontendC/2002-09-18-UnionProblem.c +++ b/llvm/test/FrontendC/2002-09-18-UnionProblem.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null struct DWstruct { diff --git a/llvm/test/FrontendC/2002-09-19-StarInLabel.c b/llvm/test/FrontendC/2002-09-19-StarInLabel.c index 86a2571d57b..171acca2f11 100644 --- a/llvm/test/FrontendC/2002-09-19-StarInLabel.c +++ b/llvm/test/FrontendC/2002-09-19-StarInLabel.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null extern void start() __asm__("start"); extern void _start() __asm__("_start"); diff --git a/llvm/test/FrontendC/2002-10-12-TooManyArguments.c b/llvm/test/FrontendC/2002-10-12-TooManyArguments.c index 206cdd98da0..73c267ad30d 100644 --- a/llvm/test/FrontendC/2002-10-12-TooManyArguments.c +++ b/llvm/test/FrontendC/2002-10-12-TooManyArguments.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null void foo() {} diff --git a/llvm/test/FrontendC/2002-12-15-GlobalBoolTest.c b/llvm/test/FrontendC/2002-12-15-GlobalBoolTest.c index 6b27391d9b5..c27a23abc6e 100644 --- a/llvm/test/FrontendC/2002-12-15-GlobalBoolTest.c +++ b/llvm/test/FrontendC/2002-12-15-GlobalBoolTest.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null _Bool X = 0; diff --git a/llvm/test/FrontendC/2002-12-15-GlobalConstantTest.c b/llvm/test/FrontendC/2002-12-15-GlobalConstantTest.c index a5a679db675..26de48fbb77 100644 --- a/llvm/test/FrontendC/2002-12-15-GlobalConstantTest.c +++ b/llvm/test/FrontendC/2002-12-15-GlobalConstantTest.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null const char *W = "foo"; diff --git a/llvm/test/FrontendC/2002-12-15-GlobalRedefinition.c b/llvm/test/FrontendC/2002-12-15-GlobalRedefinition.c index 39632a15066..3b76953b094 100644 --- a/llvm/test/FrontendC/2002-12-15-GlobalRedefinition.c +++ b/llvm/test/FrontendC/2002-12-15-GlobalRedefinition.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null extern char algbrfile[9]; char algbrfile[9] = "abcdefgh"; diff --git a/llvm/test/FrontendC/2002-12-15-StructParameters.c b/llvm/test/FrontendC/2002-12-15-StructParameters.c index c85dab1cd1e..90ab1ff4404 100644 --- a/llvm/test/FrontendC/2002-12-15-StructParameters.c +++ b/llvm/test/FrontendC/2002-12-15-StructParameters.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null typedef struct { diff --git a/llvm/test/FrontendC/2003-03-03-DeferredType.c b/llvm/test/FrontendC/2003-03-03-DeferredType.c index fa51991b305..9e60df6f6a0 100644 --- a/llvm/test/FrontendC/2003-03-03-DeferredType.c +++ b/llvm/test/FrontendC/2003-03-03-DeferredType.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null diff --git a/llvm/test/FrontendC/2003-06-22-UnionCrash.c b/llvm/test/FrontendC/2003-06-22-UnionCrash.c index dab0716ae63..54d8dc6dda9 100644 --- a/llvm/test/FrontendC/2003-06-22-UnionCrash.c +++ b/llvm/test/FrontendC/2003-06-22-UnionCrash.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null struct Blend_Map_Entry { union { diff --git a/llvm/test/FrontendC/2003-06-23-GCC-fold-infinite-recursion.c b/llvm/test/FrontendC/2003-06-23-GCC-fold-infinite-recursion.c index ba66276683b..80562c8849b 100644 --- a/llvm/test/FrontendC/2003-06-23-GCC-fold-infinite-recursion.c +++ b/llvm/test/FrontendC/2003-06-23-GCC-fold-infinite-recursion.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null double Test(double A, double B, double C, double D) { return -(A-B) - (C-D); diff --git a/llvm/test/FrontendC/2003-06-26-CFECrash.c b/llvm/test/FrontendC/2003-06-26-CFECrash.c index bb6977f4838..10a7ed44458 100644 --- a/llvm/test/FrontendC/2003-06-26-CFECrash.c +++ b/llvm/test/FrontendC/2003-06-26-CFECrash.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null typedef struct min_info { long offset; diff --git a/llvm/test/FrontendC/2003-06-29-MultipleFunctionDefinition.c b/llvm/test/FrontendC/2003-06-29-MultipleFunctionDefinition.c index b7bc8033067..be042cedf9f 100644 --- a/llvm/test/FrontendC/2003-06-29-MultipleFunctionDefinition.c +++ b/llvm/test/FrontendC/2003-06-29-MultipleFunctionDefinition.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null /* This is apparently legal C. */ diff --git a/llvm/test/FrontendC/2003-08-18-SigSetJmp.c b/llvm/test/FrontendC/2003-08-18-SigSetJmp.c index b7f4553f41d..fc0d7659de6 100644 --- a/llvm/test/FrontendC/2003-08-18-SigSetJmp.c +++ b/llvm/test/FrontendC/2003-08-18-SigSetJmp.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null #include <setjmp.h> diff --git a/llvm/test/FrontendC/2003-08-18-StructAsValue.c b/llvm/test/FrontendC/2003-08-18-StructAsValue.c index 649eadc4e45..26cb78a4d24 100644 --- a/llvm/test/FrontendC/2003-08-18-StructAsValue.c +++ b/llvm/test/FrontendC/2003-08-18-StructAsValue.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null typedef struct { diff --git a/llvm/test/FrontendC/2003-08-20-BadBitfieldRef.c b/llvm/test/FrontendC/2003-08-20-BadBitfieldRef.c index 58cf1bc334c..ef54d8ad9c0 100644 --- a/llvm/test/FrontendC/2003-08-20-BadBitfieldRef.c +++ b/llvm/test/FrontendC/2003-08-20-BadBitfieldRef.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null void foo() { diff --git a/llvm/test/FrontendC/2003-08-20-PrototypeMismatch.c b/llvm/test/FrontendC/2003-08-20-PrototypeMismatch.c index 8358a2f6fd0..85c89f694c5 100644 --- a/llvm/test/FrontendC/2003-08-20-PrototypeMismatch.c +++ b/llvm/test/FrontendC/2003-08-20-PrototypeMismatch.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null diff --git a/llvm/test/FrontendC/2003-08-20-vfork-bug.c b/llvm/test/FrontendC/2003-08-20-vfork-bug.c index 575bfd6c194..cfe316162ad 100644 --- a/llvm/test/FrontendC/2003-08-20-vfork-bug.c +++ b/llvm/test/FrontendC/2003-08-20-vfork-bug.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null extern int vfork(void); test() { diff --git a/llvm/test/FrontendC/2003-08-21-BinOp-Type-Mismatch.c b/llvm/test/FrontendC/2003-08-21-BinOp-Type-Mismatch.c index 8829652cb15..a1d4574dcdb 100644 --- a/llvm/test/FrontendC/2003-08-21-BinOp-Type-Mismatch.c +++ b/llvm/test/FrontendC/2003-08-21-BinOp-Type-Mismatch.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null struct bar; diff --git a/llvm/test/FrontendC/2003-08-21-StmtExpr.c b/llvm/test/FrontendC/2003-08-21-StmtExpr.c index 878ed473487..7f7d22ea9d7 100644 --- a/llvm/test/FrontendC/2003-08-21-StmtExpr.c +++ b/llvm/test/FrontendC/2003-08-21-StmtExpr.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null typedef struct { diff --git a/llvm/test/FrontendC/2003-08-21-WideString.c b/llvm/test/FrontendC/2003-08-21-WideString.c index 69847610b13..bf67a21896b 100644 --- a/llvm/test/FrontendC/2003-08-21-WideString.c +++ b/llvm/test/FrontendC/2003-08-21-WideString.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null #include <wchar.h> diff --git a/llvm/test/FrontendC/2003-08-23-LocalUnionTest.c b/llvm/test/FrontendC/2003-08-23-LocalUnionTest.c index dc27802623a..987accca1cc 100644 --- a/llvm/test/FrontendC/2003-08-23-LocalUnionTest.c +++ b/llvm/test/FrontendC/2003-08-23-LocalUnionTest.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null diff --git a/llvm/test/FrontendC/2003-08-29-BitFieldStruct.c b/llvm/test/FrontendC/2003-08-29-BitFieldStruct.c index 8c303e8f2e0..57273cd8639 100644 --- a/llvm/test/FrontendC/2003-08-29-BitFieldStruct.c +++ b/llvm/test/FrontendC/2003-08-29-BitFieldStruct.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null struct Word { short bar; diff --git a/llvm/test/FrontendC/2003-08-29-HugeCharConst.c b/llvm/test/FrontendC/2003-08-29-HugeCharConst.c index a997994e91c..236eb2e2748 100644 --- a/llvm/test/FrontendC/2003-08-29-HugeCharConst.c +++ b/llvm/test/FrontendC/2003-08-29-HugeCharConst.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null void foo() { unsigned char int_latin1[] = "f\200\372b\200\343\200\340"; diff --git a/llvm/test/FrontendC/2003-08-29-StructLayoutBug.c b/llvm/test/FrontendC/2003-08-29-StructLayoutBug.c index a5f6fb106ff..16731945b77 100644 --- a/llvm/test/FrontendC/2003-08-29-StructLayoutBug.c +++ b/llvm/test/FrontendC/2003-08-29-StructLayoutBug.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null struct foo { unsigned int I:1; diff --git a/llvm/test/FrontendC/2003-08-30-LargeIntegerBitfieldMember.c b/llvm/test/FrontendC/2003-08-30-LargeIntegerBitfieldMember.c index f67aee4c10f..e1ca88cdc6f 100644 --- a/llvm/test/FrontendC/2003-08-30-LargeIntegerBitfieldMember.c +++ b/llvm/test/FrontendC/2003-08-30-LargeIntegerBitfieldMember.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null struct foo { unsigned int I:1; diff --git a/llvm/test/FrontendC/2003-09-18-BitfieldTests.c b/llvm/test/FrontendC/2003-09-18-BitfieldTests.c index 900a7fdd660..2d74cb401dc 100644 --- a/llvm/test/FrontendC/2003-09-18-BitfieldTests.c +++ b/llvm/test/FrontendC/2003-09-18-BitfieldTests.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -w -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -w -S %s -o - | llvm-as -o /dev/null typedef struct BF { diff --git a/llvm/test/FrontendC/2003-09-30-StructLayout.c b/llvm/test/FrontendC/2003-09-30-StructLayout.c index 3a4016606ec..177d1f49b2f 100644 --- a/llvm/test/FrontendC/2003-09-30-StructLayout.c +++ b/llvm/test/FrontendC/2003-09-30-StructLayout.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null enum En { ENUM_VAL diff --git a/llvm/test/FrontendC/2003-10-02-UnionLValueError.c b/llvm/test/FrontendC/2003-10-02-UnionLValueError.c index 2ded0c64b42..a4d17a4a0ba 100644 --- a/llvm/test/FrontendC/2003-10-02-UnionLValueError.c +++ b/llvm/test/FrontendC/2003-10-02-UnionLValueError.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null #include <stdio.h> diff --git a/llvm/test/FrontendC/2003-10-06-NegateExprType.c b/llvm/test/FrontendC/2003-10-06-NegateExprType.c index 02386031b71..fb8329b344b 100644 --- a/llvm/test/FrontendC/2003-10-06-NegateExprType.c +++ b/llvm/test/FrontendC/2003-10-06-NegateExprType.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null extern int A[10]; diff --git a/llvm/test/FrontendC/2003-10-09-UnionInitializerBug.c b/llvm/test/FrontendC/2003-10-09-UnionInitializerBug.c index 90dbd37f0d6..57e113a7cc2 100644 --- a/llvm/test/FrontendC/2003-10-09-UnionInitializerBug.c +++ b/llvm/test/FrontendC/2003-10-09-UnionInitializerBug.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null struct Foo { unsigned a; diff --git a/llvm/test/FrontendC/2003-10-28-ident.c b/llvm/test/FrontendC/2003-10-28-ident.c index 9911dfd1ffe..06cacf87a90 100644 --- a/llvm/test/FrontendC/2003-10-28-ident.c +++ b/llvm/test/FrontendC/2003-10-28-ident.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null #ident "foo" diff --git a/llvm/test/FrontendC/2003-10-29-AsmRename.c b/llvm/test/FrontendC/2003-10-29-AsmRename.c index 5750cedd026..d07ccf7fd2c 100644 --- a/llvm/test/FrontendC/2003-10-29-AsmRename.c +++ b/llvm/test/FrontendC/2003-10-29-AsmRename.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null struct foo { int X; }; diff --git a/llvm/test/FrontendC/2003-11-01-C99-CompoundLiteral.c b/llvm/test/FrontendC/2003-11-01-C99-CompoundLiteral.c index a0aa69858cf..2912c97c546 100644 --- a/llvm/test/FrontendC/2003-11-01-C99-CompoundLiteral.c +++ b/llvm/test/FrontendC/2003-11-01-C99-CompoundLiteral.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null typedef struct { int foo; } spinlock_t; typedef struct wait_queue_head_t { spinlock_t lock; } wait_queue_head_t; diff --git a/llvm/test/FrontendC/2003-11-01-EmptyStructCrash.c b/llvm/test/FrontendC/2003-11-01-EmptyStructCrash.c index fb6993bb209..c1161195daf 100644 --- a/llvm/test/FrontendC/2003-11-01-EmptyStructCrash.c +++ b/llvm/test/FrontendC/2003-11-01-EmptyStructCrash.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null typedef struct { } the_coolest_struct_in_the_world; extern the_coolest_struct_in_the_world xyzzy; diff --git a/llvm/test/FrontendC/2003-11-01-GlobalUnionInit.c b/llvm/test/FrontendC/2003-11-01-GlobalUnionInit.c index be7788d1abb..7cd707348ca 100644 --- a/llvm/test/FrontendC/2003-11-01-GlobalUnionInit.c +++ b/llvm/test/FrontendC/2003-11-01-GlobalUnionInit.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null union bdflush_param { struct { int x; } b_un; diff --git a/llvm/test/FrontendC/2003-11-04-EmptyStruct.c b/llvm/test/FrontendC/2003-11-04-EmptyStruct.c index c7a01641591..b4f37befffa 100644 --- a/llvm/test/FrontendC/2003-11-04-EmptyStruct.c +++ b/llvm/test/FrontendC/2003-11-04-EmptyStruct.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null typedef struct { } rwlock_t; struct fs_struct { rwlock_t lock; int umask; }; diff --git a/llvm/test/FrontendC/2003-11-04-OutOfMemory.c b/llvm/test/FrontendC/2003-11-04-OutOfMemory.c index 6a42e160f27..40cb6c2e21e 100644 --- a/llvm/test/FrontendC/2003-11-04-OutOfMemory.c +++ b/llvm/test/FrontendC/2003-11-04-OutOfMemory.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null void schedule_timeout(signed long timeout) { diff --git a/llvm/test/FrontendC/2003-11-12-VoidString.c b/llvm/test/FrontendC/2003-11-12-VoidString.c index db2e84bbbbc..5770b3661a9 100644 --- a/llvm/test/FrontendC/2003-11-12-VoidString.c +++ b/llvm/test/FrontendC/2003-11-12-VoidString.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null void query_newnamebuf(void) { ((void)"query_newnamebuf"); } diff --git a/llvm/test/FrontendC/2003-11-16-StaticArrayInit.c b/llvm/test/FrontendC/2003-11-16-StaticArrayInit.c index 2b42e38dc9a..eb83b3ad0c6 100644 --- a/llvm/test/FrontendC/2003-11-16-StaticArrayInit.c +++ b/llvm/test/FrontendC/2003-11-16-StaticArrayInit.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null void bar () { static char x[10]; diff --git a/llvm/test/FrontendC/2003-11-18-CondExprLValue.c b/llvm/test/FrontendC/2003-11-18-CondExprLValue.c index ec000a443d9..68ee622c641 100644 --- a/llvm/test/FrontendC/2003-11-18-CondExprLValue.c +++ b/llvm/test/FrontendC/2003-11-18-CondExprLValue.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null typedef struct { unsigned long pgprot; } pgprot_t; diff --git a/llvm/test/FrontendC/2003-11-19-BitFieldArray.c b/llvm/test/FrontendC/2003-11-19-BitFieldArray.c index 9d54112e86e..250268a3b85 100644 --- a/llvm/test/FrontendC/2003-11-19-BitFieldArray.c +++ b/llvm/test/FrontendC/2003-11-19-BitFieldArray.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null struct _GIOChannel { int write_buf; diff --git a/llvm/test/FrontendC/2003-11-20-Bitfields.c b/llvm/test/FrontendC/2003-11-20-Bitfields.c index c9ea0dc7f1e..4be9942ccf3 100644 --- a/llvm/test/FrontendC/2003-11-20-Bitfields.c +++ b/llvm/test/FrontendC/2003-11-20-Bitfields.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null struct face_cachel { unsigned int reverse :1; diff --git a/llvm/test/FrontendC/2003-11-20-ComplexDivision.c b/llvm/test/FrontendC/2003-11-20-ComplexDivision.c index cd548c0313f..172de8c0e19 100644 --- a/llvm/test/FrontendC/2003-11-20-ComplexDivision.c +++ b/llvm/test/FrontendC/2003-11-20-ComplexDivision.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null int test() { __complex__ double C; diff --git a/llvm/test/FrontendC/2003-11-20-UnionBitfield.c b/llvm/test/FrontendC/2003-11-20-UnionBitfield.c index 12e7df5890a..f999c207772 100644 --- a/llvm/test/FrontendC/2003-11-20-UnionBitfield.c +++ b/llvm/test/FrontendC/2003-11-20-UnionBitfield.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null struct printf_spec { unsigned int minus_flag:1; diff --git a/llvm/test/FrontendC/2003-11-26-PointerShift.c b/llvm/test/FrontendC/2003-11-26-PointerShift.c index 079f6903a23..6b5205a6e7e 100644 --- a/llvm/test/FrontendC/2003-11-26-PointerShift.c +++ b/llvm/test/FrontendC/2003-11-26-PointerShift.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null unsigned long do_csum(const unsigned char *buff, int len, unsigned long result) { if (2 & (unsigned long) buff) result += 1; diff --git a/llvm/test/FrontendC/2003-11-27-ConstructorCast.c b/llvm/test/FrontendC/2003-11-27-ConstructorCast.c index 3780e7a4b97..15eb7694795 100644 --- a/llvm/test/FrontendC/2003-11-27-ConstructorCast.c +++ b/llvm/test/FrontendC/2003-11-27-ConstructorCast.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null struct i387_soft_struct { long cwd; diff --git a/llvm/test/FrontendC/2003-11-27-UnionCtorInitialization.c b/llvm/test/FrontendC/2003-11-27-UnionCtorInitialization.c index 472b5915853..e3ae1e96a68 100644 --- a/llvm/test/FrontendC/2003-11-27-UnionCtorInitialization.c +++ b/llvm/test/FrontendC/2003-11-27-UnionCtorInitialization.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null struct i387_soft_struct { long cwd; diff --git a/llvm/test/FrontendC/2004-01-08-ExternInlineRedefine.c b/llvm/test/FrontendC/2004-01-08-ExternInlineRedefine.c index b3907ee9933..4366b9b5659 100644 --- a/llvm/test/FrontendC/2004-01-08-ExternInlineRedefine.c +++ b/llvm/test/FrontendC/2004-01-08-ExternInlineRedefine.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null extern __inline long int diff --git a/llvm/test/FrontendC/2004-03-07-ComplexDivEquals.c b/llvm/test/FrontendC/2004-03-07-ComplexDivEquals.c index b1da5805412..c6c805a7b32 100644 --- a/llvm/test/FrontendC/2004-03-07-ComplexDivEquals.c +++ b/llvm/test/FrontendC/2004-03-07-ComplexDivEquals.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null void test(__complex__ double D, double X) { diff --git a/llvm/test/FrontendC/2004-03-09-LargeArrayInitializers.c b/llvm/test/FrontendC/2004-03-09-LargeArrayInitializers.c index 335c5684870..265206fabb6 100644 --- a/llvm/test/FrontendC/2004-03-09-LargeArrayInitializers.c +++ b/llvm/test/FrontendC/2004-03-09-LargeArrayInitializers.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null // Test that these initializers are handled efficiently diff --git a/llvm/test/FrontendC/2004-03-15-SimpleIndirectGoto.c b/llvm/test/FrontendC/2004-03-15-SimpleIndirectGoto.c index ad7221e96a0..a3f27b2a330 100644 --- a/llvm/test/FrontendC/2004-03-15-SimpleIndirectGoto.c +++ b/llvm/test/FrontendC/2004-03-15-SimpleIndirectGoto.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null int code[]={0,0,0,0,1}; void foo(int x) { diff --git a/llvm/test/FrontendC/2004-03-16-AsmRegisterCrash.c b/llvm/test/FrontendC/2004-03-16-AsmRegisterCrash.c index 2662c79a1c6..f13368c2562 100644 --- a/llvm/test/FrontendC/2004-03-16-AsmRegisterCrash.c +++ b/llvm/test/FrontendC/2004-03-16-AsmRegisterCrash.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null int foo() { #ifdef __ppc__ diff --git a/llvm/test/FrontendC/2004-05-07-VarArrays.c b/llvm/test/FrontendC/2004-05-07-VarArrays.c index 20412983e90..3a39c4fe63a 100644 --- a/llvm/test/FrontendC/2004-05-07-VarArrays.c +++ b/llvm/test/FrontendC/2004-05-07-VarArrays.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null int foo(int len, char arr[][len], int X) { return arr[X][0]; diff --git a/llvm/test/FrontendC/2004-05-21-IncompleteEnum.c b/llvm/test/FrontendC/2004-05-21-IncompleteEnum.c index 106df5e48fc..958a8d1c0ea 100644 --- a/llvm/test/FrontendC/2004-05-21-IncompleteEnum.c +++ b/llvm/test/FrontendC/2004-05-21-IncompleteEnum.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -w -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -w -S %s -o - | llvm-as -o /dev/null void test(enum foo *X) { } diff --git a/llvm/test/FrontendC/2004-06-08-OpaqueStructArg.c b/llvm/test/FrontendC/2004-06-08-OpaqueStructArg.c index ede811c3898..5dfdd83c9e2 100644 --- a/llvm/test/FrontendC/2004-06-08-OpaqueStructArg.c +++ b/llvm/test/FrontendC/2004-06-08-OpaqueStructArg.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null struct fu; void foo(struct fu); diff --git a/llvm/test/FrontendC/2004-06-17-UnorderedBuiltins.c b/llvm/test/FrontendC/2004-06-17-UnorderedBuiltins.c index 5e02e7f325a..02780f0f057 100644 --- a/llvm/test/FrontendC/2004-06-17-UnorderedBuiltins.c +++ b/llvm/test/FrontendC/2004-06-17-UnorderedBuiltins.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null _Bool A, B, C, D, E, F, G, H; diff --git a/llvm/test/FrontendC/2004-06-18-VariableLengthArrayOfStructures.c b/llvm/test/FrontendC/2004-06-18-VariableLengthArrayOfStructures.c index e474a13b37f..3e450a4b936 100644 --- a/llvm/test/FrontendC/2004-06-18-VariableLengthArrayOfStructures.c +++ b/llvm/test/FrontendC/2004-06-18-VariableLengthArrayOfStructures.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null struct S { }; diff --git a/llvm/test/FrontendC/2004-07-06-FunctionCast.c b/llvm/test/FrontendC/2004-07-06-FunctionCast.c index 169f7403642..6d80f86fa1e 100644 --- a/llvm/test/FrontendC/2004-07-06-FunctionCast.c +++ b/llvm/test/FrontendC/2004-07-06-FunctionCast.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null static int unused_func(void) { return 1; diff --git a/llvm/test/FrontendC/2004-08-06-LargeStructTest.c b/llvm/test/FrontendC/2004-08-06-LargeStructTest.c index b0413b4b0ce..8fbb7f8368c 100644 --- a/llvm/test/FrontendC/2004-08-06-LargeStructTest.c +++ b/llvm/test/FrontendC/2004-08-06-LargeStructTest.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null #define A(X) int X; diff --git a/llvm/test/FrontendC/2005-09-20-ComplexConstants.c b/llvm/test/FrontendC/2005-09-20-ComplexConstants.c index db98fc2385a..209adc502fa 100644 --- a/llvm/test/FrontendC/2005-09-20-ComplexConstants.c +++ b/llvm/test/FrontendC/2005-09-20-ComplexConstants.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc %s -S -o - | llvm-as -o /dev/null -f +// RUN: %llvmgcc %s -S -o - | llvm-as -o /dev/null const double _Complex x[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; diff --git a/llvm/test/FrontendC/2009-02-17-BitField-dbg.c b/llvm/test/FrontendC/2009-02-17-BitField-dbg.c index 456b0a64a79..36ee2e6f0ef 100644 --- a/llvm/test/FrontendC/2009-02-17-BitField-dbg.c +++ b/llvm/test/FrontendC/2009-02-17-BitField-dbg.c @@ -1,6 +1,6 @@ // Check bitfields. // RUN: %llvmgcc -S -O0 -g %s -o - | llvm-as | \ -// RUN: llc --disable-fp-elim -o 2009-02-17-BitField-dbg.s -f +// RUN: llc --disable-fp-elim -o 2009-02-17-BitField-dbg.s // RUN: %compile_c 2009-02-17-BitField-dbg.s -o 2009-02-17-BitField-dbg.o // RUN: echo {ptype mystruct} > %t2 // RUN: gdb -q -batch -n -x %t2 2009-02-17-BitField-dbg.o | \ diff --git a/llvm/test/FrontendC/2009-07-15-pad-wchar_t-array.c b/llvm/test/FrontendC/2009-07-15-pad-wchar_t-array.c index 839a7bb5cbf..41bdef25ecc 100644 --- a/llvm/test/FrontendC/2009-07-15-pad-wchar_t-array.c +++ b/llvm/test/FrontendC/2009-07-15-pad-wchar_t-array.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null #include <stddef.h> signed short _iodbcdm_sqlerror( ) |