diff options
Diffstat (limited to 'llvm/lib/CodeGen/MIRParser/MILexer.h')
| -rw-r--r-- | llvm/lib/CodeGen/MIRParser/MILexer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MIRParser/MILexer.h b/llvm/lib/CodeGen/MIRParser/MILexer.h index 778640a2c81..fd94d61cab3 100644 --- a/llvm/lib/CodeGen/MIRParser/MILexer.h +++ b/llvm/lib/CodeGen/MIRParser/MILexer.h @@ -58,6 +58,7 @@ struct MIToken { // Other tokens IntegerLiteral, VirtualRegister, + ConstantPoolItem, JumpTableIndex }; @@ -122,7 +123,7 @@ public: return Kind == IntegerLiteral || Kind == MachineBasicBlock || Kind == StackObject || Kind == FixedStackObject || Kind == GlobalValue || Kind == VirtualRegister || - Kind == JumpTableIndex; + Kind == ConstantPoolItem || Kind == JumpTableIndex; } }; |

