aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGCall.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/CodeGen/CGCall.cpp')
-rw-r--r--lib/CodeGen/CGCall.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/CodeGen/CGCall.cpp b/lib/CodeGen/CGCall.cpp
index 8027612cd4..21eccdc2a3 100644
--- a/lib/CodeGen/CGCall.cpp
+++ b/lib/CodeGen/CGCall.cpp
@@ -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());
}
}