[llvm-commits] CVS: llvm/lib/Target/TargetSelectionDAG.td
Evan Cheng
evan.cheng at apple.com
Wed Dec 14 11:41:06 PST 2005
Changes in directory llvm/lib/Target:
TargetSelectionDAG.td updated: 1.22 -> 1.23
---
Log message:
Fixed extload type profile. The 4th operand is a ValueType node with type
OtherVT, it cannot be compare to type of 1st operand which is an integer type.
---
Diffs of the changes: (+1 -2)
TargetSelectionDAG.td | 3 +--
1 files changed, 1 insertion(+), 2 deletions(-)
Index: llvm/lib/Target/TargetSelectionDAG.td
diff -u llvm/lib/Target/TargetSelectionDAG.td:1.22 llvm/lib/Target/TargetSelectionDAG.td:1.23
--- llvm/lib/Target/TargetSelectionDAG.td:1.22 Tue Dec 13 20:21:01 2005
+++ llvm/lib/Target/TargetSelectionDAG.td Wed Dec 14 13:40:54 2005
@@ -151,8 +151,7 @@
]>;
def SDTIntExtLoad : SDTypeProfile<1, 3, [ // sextload, zextload
- SDTCisInt<0>, SDTCisPtrTy<1>, SDTCisVT<2, OtherVT>, SDTCisVT<3, OtherVT>,
- SDTCisVTSmallerThanOp<3, 0>
+ SDTCisInt<0>, SDTCisPtrTy<1>, SDTCisVT<2, OtherVT>, SDTCisVT<3, OtherVT>
]>;
More information about the llvm-commits
mailing list