[llvm-commits] [llvm] r76315 - /llvm/trunk/lib/Target/SystemZ/SystemZISelLowering.cpp
Anton Korobeynikov
asl at math.spbu.ru
Sat Jul 18 06:45:05 PDT 2009
Author: asl
Date: Sat Jul 18 08:44:25 2009
New Revision: 76315
URL: http://llvm.org/viewvc/llvm-project?rev=76315&view=rev
Log:
Expand frem
Modified:
llvm/trunk/lib/Target/SystemZ/SystemZISelLowering.cpp
Modified: llvm/trunk/lib/Target/SystemZ/SystemZISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/SystemZ/SystemZISelLowering.cpp?rev=76315&r1=76314&r2=76315&view=diff
==============================================================================
--- llvm/trunk/lib/Target/SystemZ/SystemZISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/SystemZ/SystemZISelLowering.cpp Sat Jul 18 08:44:25 2009
@@ -137,6 +137,8 @@
setOperationAction(ISD::FSIN, MVT::f64, Expand);
setOperationAction(ISD::FCOS, MVT::f32, Expand);
setOperationAction(ISD::FCOS, MVT::f64, Expand);
+ setOperationAction(ISD::FREM, MVT::f32, Expand);
+ setOperationAction(ISD::FREM, MVT::f64, Expand);
// We have only 64-bit bitconverts
setOperationAction(ISD::BIT_CONVERT, MVT::f32, Expand);
More information about the llvm-commits
mailing list