mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
Add explicit keywords.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42747 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -91,8 +91,8 @@ public:
|
||||
Char6 = 4 // A 6-bit fixed field which maps to [a-zA-Z0-9._].
|
||||
};
|
||||
|
||||
BitCodeAbbrevOp(uint64_t V) : Val(V), IsLiteral(true) {}
|
||||
BitCodeAbbrevOp(Encoding E, uint64_t Data = 0)
|
||||
explicit BitCodeAbbrevOp(uint64_t V) : Val(V), IsLiteral(true) {}
|
||||
explicit BitCodeAbbrevOp(Encoding E, uint64_t Data = 0)
|
||||
: Val(Data), IsLiteral(false), Enc(E) {}
|
||||
|
||||
bool isLiteral() const { return IsLiteral; }
|
||||
|
Reference in New Issue
Block a user