Allow direct access to mergemap for printing

llvm-svn: 4191
This commit is contained in:
Chris Lattner 2002-10-16 01:17:16 +00:00
parent c6e5d688af
commit edd30e5bfa
1 changed files with 5 additions and 0 deletions

View File

@ -192,6 +192,11 @@ public:
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
/// NodeHandle, replacing what was there. It is uncommon to use this method,
/// instead one of the higher level methods should be used, below.