diff options
Diffstat (limited to 'src/parseTools.js')
-rw-r--r-- | src/parseTools.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/parseTools.js b/src/parseTools.js index 591e6add..e3734e0e 100644 --- a/src/parseTools.js +++ b/src/parseTools.js @@ -731,6 +731,11 @@ function cleanLabel(label) { } } +function getOldLabel(label) { + var parts = label.split('|'); + return parts[parts.length-1]; +} + function calcAllocatedSize(type) { if (pointingLevels(type) == 0 && isStructType(type)) { return Types.types[type].flatSize; // makeEmptyStruct(item.allocatedType).length; |