mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-25 00:24:26 +00:00
IR: Allow 16-bits for column info
Raise the limit for column information from 8 bits to 16 bits. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226291 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -3002,7 +3002,7 @@ bool LLParser::ParseSpecializedMDNode(MDNode *&N, bool IsDistinct) {
|
||||
/// ::= !MDLocation(line: 43, column: 8, scope: !5, inlinedAt: !6)
|
||||
bool LLParser::ParseMDLocation(MDNode *&Result, bool IsDistinct) {
|
||||
MDUnsignedField<uint32_t> line(0, ~0u >> 8);
|
||||
MDUnsignedField<uint32_t> column(0, ~0u >> 24);
|
||||
MDUnsignedField<uint32_t> column(0, ~0u >> 16);
|
||||
MDField scope;
|
||||
MDField inlinedAt;
|
||||
if (ParseMDFieldsImpl([&]() -> bool {
|
||||
|
Reference in New Issue
Block a user