[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaISelPattern.cpp

Chris Lattner lattner at cs.uiuc.edu
Fri Apr 1 21:03:33 PST 2005



Changes in directory llvm/lib/Target/Alpha:

AlphaISelPattern.cpp updated: 1.72 -> 1.73
---
Log message:

This target doesn't support fabs/fneg yet.


---
Diffs of the changes:  (+4 -0)

 AlphaISelPattern.cpp |    4 ++++
 1 files changed, 4 insertions(+)


Index: llvm/lib/Target/Alpha/AlphaISelPattern.cpp
diff -u llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.72 llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.73
--- llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.72	Thu Mar 31 16:02:25 2005
+++ llvm/lib/Target/Alpha/AlphaISelPattern.cpp	Fri Apr  1 23:03:19 2005
@@ -75,6 +75,10 @@
       setOperationAction(ISD::MEMSET           , MVT::Other, Expand);
       setOperationAction(ISD::MEMCPY           , MVT::Other, Expand);
 
+      // We don't support these yet.
+      setOperationAction(ISD::FNEG             , MVT::f64  , Expand);
+      setOperationAction(ISD::FABS             , MVT::f64  , Expand);
+
       //Doesn't work yet
       setOperationAction(ISD::SETCC            , MVT::f32,   Promote);
 






More information about the llvm-commits mailing list