diff options
author | Dan Gohman <gohman@apple.com> | 2008-01-31 00:41:03 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-01-31 00:41:03 +0000 |
commit | 1a0248690aaa9f7baaf1247e5f65a1c0c9e3783c (patch) | |
tree | 4d60c015965f13856c243ac39d6cbedf4d027267 /lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | |
parent | 00dff8dda29b5a249cd99405ce26e84cef13ba53 (diff) |
Rename ISD::FLT_ROUNDS to ISD::FLT_ROUNDS_ to avoid conflicting
with the real FLT_ROUNDS (defined in <float.h>).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46587 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 87b27401af..04c4e0153e 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -2925,7 +2925,7 @@ SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) { return 0; case Intrinsic::flt_rounds: { - setValue(&I, DAG.getNode(ISD::FLT_ROUNDS, MVT::i32)); + setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, MVT::i32)); return 0; } |