[llvm-commits] [llvm] r131947 - /llvm/trunk/tools/llc/llc.cpp
Evan Cheng
evan.cheng at apple.com
Mon May 23 18:43:38 PDT 2011
Author: evancheng
Date: Mon May 23 20:43:38 2011
New Revision: 131947
URL: http://llvm.org/viewvc/llvm-project?rev=131947&view=rev
Log:
Remove dead option.
Modified:
llvm/trunk/tools/llc/llc.cpp
Modified: llvm/trunk/tools/llc/llc.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llc/llc.cpp?rev=131947&r1=131946&r2=131947&view=diff
==============================================================================
--- llvm/trunk/tools/llc/llc.cpp (original)
+++ llvm/trunk/tools/llc/llc.cpp Mon May 23 20:43:38 2011
@@ -107,11 +107,6 @@
cl::desc("Do not emit code that uses the red zone."),
cl::init(false));
-static cl::opt<bool>
-NoImplicitFloats("no-implicit-float",
- cl::desc("Don't generate implicit floating point instructions (x86-only)"),
- cl::init(false));
-
// GetFileNameRoot - Helper function to get the basename of a filename.
static inline std::string
GetFileNameRoot(const std::string &InputFilename) {
More information about the llvm-commits
mailing list