-
Notifications
You must be signed in to change notification settings - Fork 511
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change dwarf_mips64el.c to not use globals
Now we don't depend on whether relocations on globals in .o should be performed or not.
- Loading branch information
Noam Yorav-Raphael
committed
Aug 25, 2023
1 parent
bde61d8
commit d81a765
Showing
3 changed files
with
11 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
int var1 = 3; | ||
int var2 = 5; | ||
int f() { | ||
int var1 = 3; | ||
int var2 = 5; | ||
return var1 + var2; | ||
} |