diff options
author | Duncan Sands <baldrick@free.fr> | 2012-04-16 19:39:33 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2012-04-16 19:39:33 +0000 |
commit | 2867c85a3754320f96e36afb63325bb76269caa4 (patch) | |
tree | c5bd58459f230d669f87a597c75213ab42b9529d /lib/VMCore/Verifier.cpp | |
parent | 2c651fe6f445724627dcc48064797dca2aa4aedc (diff) |
Remove support for the special 'fast' value for fpmath accuracy for the moment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@154850 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Verifier.cpp')
-rw-r--r-- | lib/VMCore/Verifier.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp index 2576766928..47baef3e29 100644 --- a/lib/VMCore/Verifier.cpp +++ b/lib/VMCore/Verifier.cpp @@ -1662,8 +1662,6 @@ void Verifier::visitInstruction(Instruction &I) { APFloat Accuracy = CFP0->getValueAPF(); Assert1(Accuracy.isNormal() && !Accuracy.isNegative(), "fpmath accuracy not a positive number!", &I); - } else if (MDString *S0 = dyn_cast_or_null<MDString>(Op0)) { - Assert1(S0->getString() == "fast", "wrong fpmath accuracy keyword!", &I); } else { Assert1(false, "invalid fpmath accuracy!", &I); } |