[llvm-commits] CVS: llvm/lib/Target/TargetSelectionDAG.td
Evan Cheng
evan.cheng at apple.com
Fri Dec 9 16:48:32 PST 2005
Changes in directory llvm/lib/Target:
TargetSelectionDAG.td updated: 1.14 -> 1.15
---
Log message:
* Added X86 store patterns.
* Added X86 dec patterns.
---
Diffs of the changes: (+5 -0)
TargetSelectionDAG.td | 5 +++++
1 files changed, 5 insertions(+)
Index: llvm/lib/Target/TargetSelectionDAG.td
diff -u llvm/lib/Target/TargetSelectionDAG.td:1.14 llvm/lib/Target/TargetSelectionDAG.td:1.15
--- llvm/lib/Target/TargetSelectionDAG.td:1.14 Fri Dec 9 16:58:42 2005
+++ llvm/lib/Target/TargetSelectionDAG.td Fri Dec 9 18:48:20 2005
@@ -137,6 +137,10 @@
SDTCisPtrTy<1>
]>;
+def SDTStore : SDTypeProfile<0, 2, [ // store
+ SDTCisInt<1>
+]>;
+
//===----------------------------------------------------------------------===//
// Selection DAG Node Properties.
//
@@ -227,6 +231,7 @@
def writeport : SDNode<"ISD::WRITEPORT" , SDTWritePort, [SDNPHasChain]>;
def load : SDNode<"ISD::LOAD" , SDTLoad, [SDNPHasChain]>;
+def store : SDNode<"ISD::STORE" , SDTStore, [SDNPHasChain]>;
//===----------------------------------------------------------------------===//
// Selection DAG Condition Codes
More information about the llvm-commits
mailing list