aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gas/testsuite/gas/macros/altmacro.s10
1 files changed, 5 insertions, 5 deletions
diff --git a/gas/testsuite/gas/macros/altmacro.s b/gas/testsuite/gas/macros/altmacro.s
index bb3a05d..eff1b8d 100644
--- a/gas/testsuite/gas/macros/altmacro.s
+++ b/gas/testsuite/gas/macros/altmacro.s
@@ -1,5 +1,5 @@
-# Check use of LOCAL directive inside .altmacro.
-# Test derived from PR 11507.
+/* Check use of LOCAL directive inside .altmacro.
+ Test derived from PR 11507. */
.altmacro
@@ -7,12 +7,12 @@
.print "local "
.endm
- .macro DEF
+ .macro EDF
LOCAL fred
.print "fred"
.endm
-# This one is just being perverse, but it should work.
+/* This one is just being perverse, but it should work. */
.macro GHI
local local
.print "local"
@@ -21,6 +21,6 @@
ABC
- DEF
+ EDF
GHI