-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Restored functionality to -L flag, generate symbol table. #49
base: master
Are you sure you want to change the base?
Conversation
This segfaults when compiling any non-erroring program with -L, probably the same as in #23. |
Stack trace I'm seeing on my side:
Using test file labels.asm, command line label1:
.db 0
label2:
.db 0
label3:
.db 0
label4:
.db 0
|
Valgrind isn't happy either (same args/test file):
|
Seems to crash when it hits this weird label:
On that note - is this the "correct" label file expected? Or are there too many entries?
|
So this is indeed the same bug, but for some exciting reason:
I think I have an idea for how to fix this (and actually fix this, rather than depending on pass2)... but there are options to do this:
Any thoughts? |
rawr.