[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
Chris Lattner
lattner at cs.uiuc.edu
Tue May 10 21:51:44 PDT 2005
Changes in directory llvm/lib/CodeGen/SelectionDAG:
SelectionDAG.cpp updated: 1.104 -> 1.105
---
Log message:
Print bit count nodes correctly
---
Diffs of the changes: (+6 -0)
SelectionDAG.cpp | 6 ++++++
1 files changed, 6 insertions(+)
Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.104 llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.105
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.104 Mon May 9 21:22:38 2005
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp Tue May 10 23:50:30 2005
@@ -1670,6 +1670,12 @@
case ISD::MEMCPY: return "memcpy";
case ISD::MEMMOVE: return "memmove";
+ // Bit counting
+ case ISD::CTPOP: return "ctpop";
+ case ISD::CTTZ: return "cttz";
+ case ISD::CTLZ: return "ctlz";
+
+ // IO Intrinsics
case ISD::READPORT: return "readport";
case ISD::WRITEPORT: return "writeport";
case ISD::READIO: return "readio";
More information about the llvm-commits
mailing list