Revert "[IAS] Teach -cc1as about the 'target-abi' option."

This reverts commit 0e41c8faeff75614cf4627533331d780ba3db030.

This is breaking buildbots:
http://lab.llvm.org:8080/green/job/clang-stage1-configure-RA_check/4668/

llvm-svn: 231248
This commit is contained in:
Daniel Jasper 2015-03-04 15:02:22 +00:00
parent 8dc4a2a3be
commit cbdf3b79d4
2 changed files with 2 additions and 7 deletions

View File

@ -25,11 +25,11 @@ def target_feature : Separate<["-"], "target-feature">,
HelpText<"Target specific attributes">;
def triple : Separate<["-"], "triple">,
HelpText<"Specify target triple (e.g. i686-apple-darwin9)">;
def target_abi : Separate<["-"], "target-abi">,
HelpText<"Target a particular ABI type">;
}
def target_abi : Separate<["-"], "target-abi">,
HelpText<"Target a particular ABI type">;
def target_linker_version : Separate<["-"], "target-linker-version">,
HelpText<"Target linker version">;
def triple_EQ : Joined<["-"], "triple=">, Alias<triple>;

View File

@ -1,5 +0,0 @@
// Check if -cc1as knows about the 'target-abi' argument.
// RUN: %clang -cc1as -triple mips--linux-gnu -filetype obj -target-cpu mips32 -target-abi o32 %s 2>&1 | \
// RUN: FileCheck --check-prefix=ABI-O32 %s
// ABI-O32-NOT: clang -cc1as: error: unknown argument: '-target-abi'