-
Notifications
You must be signed in to change notification settings - Fork 391
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Using: #define LINE1 10 #line LINE1 #define LINE2 20 #define FILE "file" #line LINE2 FILE Should now work. Add new testcase tests/pp/23.S
- Loading branch information
Showing
3 changed files
with
41 additions
and
11 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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
__LINE__ | ||
# 10 | ||
__LINE__ | ||
# line 20 | ||
__LINE__ | ||
# 64mb | ||
__LINE__ | ||
# line 30 | ||
__LINE__ | ||
#define LINE1 40 | ||
# line LINE1 | ||
__LINE__ __FILE__ | ||
#define LINE2 50 | ||
# line LINE2 "file1" | ||
__LINE__ __FILE__ | ||
#define LINE3 60 | ||
#define FILE "file2" | ||
# line LINE3 FILE | ||
__LINE__ __FILE__ |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
1 | ||
3 | ||
20 | ||
22 | ||
30 | ||
40 "23.S" | ||
50 "file1" | ||
60 "file2" |