Bring back -disable-fp-elim.

It was moved to llvm/CodeGen/CommandLineFlags.h.

GitHub: Fixes #502.
This commit is contained in:
David Nadlinger
2013-10-13 20:26:19 +02:00
parent d46d4ce4b1
commit 257da5afe5
6 changed files with 10 additions and 5 deletions

View File

@@ -325,6 +325,10 @@ cl::opt<FloatABI::Type> mFloatABI("float-abi",
clEnumValN(FloatABI::Hard, "hard", "Hardware floating-point ABI and instructions"),
clEnumValEnd));
cl::opt<bool> disableFpElim("disable-fp-elim",
cl::desc("Disable frame pointer elimination optimization"),
cl::init(false));
static cl::opt<bool, true, FlagParser> asserts("asserts",
cl::desc("(*) Enable assertions"),
cl::value_desc("bool"),