mirror of
https://github.com/fadden/6502bench.git
synced 2025-11-24 05:17:44 +00:00
Add local variable uniquification
For ACME and cc65, enable uniqification. This works with my basic tests, but there are a lot of potential edge cases.
This commit is contained in:
@@ -117,7 +117,7 @@ namespace SourceGen {
|
||||
}
|
||||
|
||||
public override string ToString() {
|
||||
return "WeakSym: " + Label + ":" + ValuePart;
|
||||
return "WeakSym: " + (IsVariable ? "var " : "") + Label + ":" + ValuePart;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user