-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2005-01-31 Jan Beulich <[email protected]> * macro.c (do_formals): Adjust to no longer accept empty parameter names. (define_macro): Adjust to no longer accept empty macro name, garbage following the parameters, or macros that were previously defined. * read.c (s_bad_end): Declare. (potable): Add endm. Handler for endr and endm is s_bad_end. (s_bad_end): Rename from s_bad_endr. Adjust to handle both .endm and .endr. * read.h (s_bad_endr): Remove. gas/testsuite/ 2005-01-31 Jan Beulich <[email protected]> * gas/macros/badarg.[ls]: New. * gas/macros/end.[ls]: New. * gas/macros/redef.[ls]: New. * gas/macros/macros.exp (run_list_test): Copy from elsewhere. Run new tests.
- Loading branch information
Jan Beulich
committed
Jan 31, 2005
1 parent
e87b291
commit 057f53c
Showing
12 changed files
with
116 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
2005-01-31 Jan Beulich <[email protected]> | ||
|
||
* macro.c (do_formals): Adjust to no longer accept empty parameter | ||
names. | ||
(define_macro): Adjust to no longer accept empty macro name, garbage | ||
following the parameters, or macros that were previously defined. | ||
* read.c (s_bad_end): Declare. | ||
(potable): Add endm. Handler for endr and endm is s_bad_end. | ||
(s_bad_end): Rename from s_bad_endr. Adjust to handle both .endm | ||
and .endr. | ||
* read.h (s_bad_endr): Remove. | ||
|
||
2005-01-31 Jan Beulich <[email protected]> | ||
|
||
* config/tc-ia64.c (parse_operands): Parse all specified operands, | ||
|
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
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 |
---|---|---|
@@ -1,3 +1,11 @@ | ||
2005-01-31 Jan Beulich <[email protected]> | ||
|
||
* gas/macros/badarg.[ls]: New. | ||
* gas/macros/end.[ls]: New. | ||
* gas/macros/redef.[ls]: New. | ||
* gas/macros/macros.exp (run_list_test): Copy from elsewhere. | ||
Run new tests. | ||
|
||
2005-01-31 Jan Beulich <[email protected]> | ||
|
||
* gas/ia64/operands.[ls]: New. | ||
|
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,7 @@ | ||
.*: Assembler messages: | ||
.*:1: Error: .* | ||
.*:4: Error: .* | ||
.*:7: Error: .* | ||
.*:10: Error: .* | ||
.*:13: Error: .* | ||
.*:16: Error: .* |
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,17 @@ | ||
.macro | ||
.endm | ||
|
||
.macro ,arg1 | ||
.endm | ||
|
||
.macro m1, | ||
.endm | ||
|
||
.macro m2,, | ||
.endm | ||
|
||
.macro m3,arg1, | ||
.endm | ||
|
||
.macro m4,,arg2 | ||
.endm |
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,3 @@ | ||
.*: Assembler messages: | ||
.*:1: Warning: \.endm .* \.macro | ||
.*:2: Warning: \.endr .* (\.rept|\.irpc?).*(\.rept|\.irpc?).*(\.rept|\.irpc?) |
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,2 @@ | ||
.endm | ||
.endr |
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,2 @@ | ||
.*: Assembler messages: | ||
.*:3: Error: .* |
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,4 @@ | ||
.macro m | ||
.endm | ||
.macro m | ||
.endm |