mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Print bit count nodes correctly
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21855 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3c8a3b1393
commit
276260b16d
@ -1670,6 +1670,12 @@ const char *SDNode::getOperationName() const {
|
||||
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";
|
||||
|
Loading…
Reference in New Issue
Block a user