summaryrefslogtreecommitdiff
path: root/tools/llc
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2012-06-22 22:31:00 +0000
committerLang Hames <lhames@gmail.com>2012-06-22 22:31:00 +0000
commit59d454959f36681dc1d68109012edc4cb019f351 (patch)
tree1daf51a793d6ff500cded1fde3cd8a7adbbbc717 /tools/llc
parent0cafa139c01aa9d5072b185d686a05b9d8ab1ee7 (diff)
downloadllvm-59d454959f36681dc1d68109012edc4cb019f351.tar.gz
llvm-59d454959f36681dc1d68109012edc4cb019f351.tar.bz2
llvm-59d454959f36681dc1d68109012edc4cb019f351.tar.xz
Rename fp-op fusion option (yet again) for compatibility with GCC option.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159042 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llc')
-rw-r--r--tools/llc/llc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp
index e08bad93b0..44f83e1b30 100644
--- a/tools/llc/llc.cpp
+++ b/tools/llc/llc.cpp
@@ -195,15 +195,15 @@ FloatABIForCalls("float-abi",
clEnumValEnd));
static cl::opt<llvm::FPOpFusion::FPOpFusionMode>
-FuseFPOps("fuse-fp-ops",
+FuseFPOps("fp-contract",
cl::desc("Enable aggresive formation of fused FP ops"),
cl::init(FPOpFusion::Standard),
cl::values(
clEnumValN(FPOpFusion::Fast, "fast",
"Fuse FP ops whenever profitable"),
- clEnumValN(FPOpFusion::Standard, "standard",
+ clEnumValN(FPOpFusion::Standard, "on",
"Only fuse 'blessed' FP ops."),
- clEnumValN(FPOpFusion::Strict, "strict",
+ clEnumValN(FPOpFusion::Strict, "off",
"Only fuse FP ops when the result won't be effected."),
clEnumValEnd));