aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2007-11-15 23:25:33 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2007-11-15 23:25:33 +0000
commit917c2a6ff2cfcd1263a5dd80c54336754c553ace (patch)
tree0bdf888ec6dc60c6593bcce3ba60a8d446bcc9ed /lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
parent5db1afb462b048bc10e0003db5a770ed960b2ddf (diff)
downloadexternal_llvm-917c2a6ff2cfcd1263a5dd80c54336754c553ace.zip
external_llvm-917c2a6ff2cfcd1263a5dd80c54336754c553ace.tar.gz
external_llvm-917c2a6ff2cfcd1263a5dd80c54336754c553ace.tar.bz2
Implement necessary bits for flt_rounds gcc builtin.
Codegen bits and llvm-gcc support will follow. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44182 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index c078f23..ade0a28 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -2930,6 +2930,10 @@ SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
DAG.setRoot(Tmp.getValue(1));
return 0;
}
+ case Intrinsic::flt_rounds: {
+ setValue(&I, DAG.getNode(ISD::FLT_ROUNDS, MVT::i32));
+ return 0;
+ }
}
}