Remove testing -use-x86_64-abi option; current implementation is

robust enough for general use.

llvm-svn: 63406
This commit is contained in:
Daniel Dunbar 2009-01-30 18:47:53 +00:00
parent d8cc884a36
commit 7da8d0b321
1 changed files with 1 additions and 7 deletions

View File

@ -27,11 +27,6 @@
using namespace clang;
using namespace CodeGen;
static llvm::cl::opt<bool>
UseX86_64ABI("use-x86_64-abi",
llvm::cl::desc("Enable use of experimental x86_64 ABI."),
llvm::cl::init(false));
/***/
// FIXME: Use iterator and sidestep silly type array creation.
@ -760,8 +755,7 @@ const ABIInfo &CodeGenTypes::getABIInfo() const {
case 32:
return *(TheABIInfo = new X86_32ABIInfo());
case 64:
if (UseX86_64ABI)
return *(TheABIInfo = new X86_64ABIInfo());
return *(TheABIInfo = new X86_64ABIInfo());
}
}