mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-03 14:31:10 +00:00
Allow direct access to mergemap for printing
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4191 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
04b72c821e
commit
d6d8f41699
@ -192,6 +192,11 @@ public:
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int getMergeMapLabel(unsigned i) {
|
||||||
|
assert(i < MergeMap.size() && "MergeMap index out of range!");
|
||||||
|
return MergeMap[i];
|
||||||
|
}
|
||||||
|
|
||||||
/// setLink - Set the link at the specified offset to the specified
|
/// setLink - Set the link at the specified offset to the specified
|
||||||
/// NodeHandle, replacing what was there. It is uncommon to use this method,
|
/// NodeHandle, replacing what was there. It is uncommon to use this method,
|
||||||
/// instead one of the higher level methods should be used, below.
|
/// instead one of the higher level methods should be used, below.
|
||||||
|
@ -192,6 +192,11 @@ public:
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int getMergeMapLabel(unsigned i) {
|
||||||
|
assert(i < MergeMap.size() && "MergeMap index out of range!");
|
||||||
|
return MergeMap[i];
|
||||||
|
}
|
||||||
|
|
||||||
/// setLink - Set the link at the specified offset to the specified
|
/// setLink - Set the link at the specified offset to the specified
|
||||||
/// NodeHandle, replacing what was there. It is uncommon to use this method,
|
/// NodeHandle, replacing what was there. It is uncommon to use this method,
|
||||||
/// instead one of the higher level methods should be used, below.
|
/// instead one of the higher level methods should be used, below.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user