From 65d860fc2871e9cc16dc8c8147550c2b9114964d Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Fri, 18 Aug 1995 15:10:35 +0000 Subject: [PATCH] * gasp/mri/*.out: Use ;, not !, for the comment character. --- gas/testsuite/ChangeLog | 4 +++ gas/testsuite/gasp/mri/embed.out | 14 ++++----- gas/testsuite/gasp/mri/exists.out | 42 +++++++++++++-------------- gas/testsuite/gasp/mri/irp.out | 8 +++--- gas/testsuite/gasp/mri/irpc.out | 8 +++--- gas/testsuite/gasp/mri/macro.out | 26 ++++++++--------- gas/testsuite/gasp/mri/narg.out | 60 +++++++++++++++++++-------------------- gas/testsuite/gasp/mri/rept.out | 26 ++++++++--------- 8 files changed, 96 insertions(+), 92 deletions(-) diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 00e63b6..1c3e77b 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,7 @@ +Fri Aug 18 11:09:38 1995 Ian Lance Taylor + + * gasp/mri/*.out: Use ;, not !, for the comment character. + Wed Aug 16 12:24:12 1995 Ian Lance Taylor * gas/mri/mri.exp: Change hppa*-*-* expected failures to only diff --git a/gas/testsuite/gasp/mri/embed.out b/gas/testsuite/gasp/mri/embed.out index 0235afc..92d925f 100644 --- a/gas/testsuite/gasp/mri/embed.out +++ b/gas/testsuite/gasp/mri/embed.out @@ -1,9 +1,9 @@ -!embed macro label -!addr&&label dc.l label -! endm -! +;embed macro label +;addr&&label dc.l label +; endm +; -! embed foo -!addrfoo dc.l foo +; embed foo +;addrfoo dc.l foo addrfoo: dc.l foo -! \ No newline at end of file +; \ No newline at end of file diff --git a/gas/testsuite/gasp/mri/exists.out b/gas/testsuite/gasp/mri/exists.out index c31a5f0..e75337d 100644 --- a/gas/testsuite/gasp/mri/exists.out +++ b/gas/testsuite/gasp/mri/exists.out @@ -1,24 +1,24 @@ -!exists macro arg1,arg2 -! ifne ==arg2 -! move arg1,arg2 -! elsec -! push arg1 -! endc -! endm -! +;exists macro arg1,arg2 +; ifne ==arg2 +; move arg1,arg2 +; elsec +; push arg1 +; endc +; endm +; -! exists foo,bar -! ifne -1 -! move foo,bar +; exists foo,bar +; ifne -1 +; move foo,bar move foo,bar -! elsec -! push foo -! endc -! exists foo -! ifne 0 -! move foo, -! elsec -! push foo +; elsec +; push foo +; endc +; exists foo +; ifne 0 +; move foo, +; elsec +; push foo push foo -! endc -! \ No newline at end of file +; endc +; \ No newline at end of file diff --git a/gas/testsuite/gasp/mri/irp.out b/gas/testsuite/gasp/mri/irp.out index 1875a14..9105620 100644 --- a/gas/testsuite/gasp/mri/irp.out +++ b/gas/testsuite/gasp/mri/irp.out @@ -1,8 +1,8 @@ -! irp param,arg1,arg2,arg3 -! dc.l param -! endr +; irp param,arg1,arg2,arg3 +; dc.l param +; endr dc.l arg1 dc.l arg2 dc.l arg3 -! end quit +; end quit end quit diff --git a/gas/testsuite/gasp/mri/irpc.out b/gas/testsuite/gasp/mri/irpc.out index 9a2b581..59f8824 100644 --- a/gas/testsuite/gasp/mri/irpc.out +++ b/gas/testsuite/gasp/mri/irpc.out @@ -1,8 +1,8 @@ -! irpc dummy,1234 -! dc.l dummy -! endr +; irpc dummy,1234 +; dc.l dummy +; endr dc.l 1 dc.l 2 dc.l 3 dc.l 4 -! \ No newline at end of file +; \ No newline at end of file diff --git a/gas/testsuite/gasp/mri/macro.out b/gas/testsuite/gasp/mri/macro.out index 1ee5e18..86eeb94 100644 --- a/gas/testsuite/gasp/mri/macro.out +++ b/gas/testsuite/gasp/mri/macro.out @@ -1,18 +1,18 @@ -!get macro arg1,arg2,arg3 -! dc.l arg1 -! arg2 -!arg3 dc.l \4 -! move.\0 d0,d1 -! endm -! +;get macro arg1,arg2,arg3 +; dc.l arg1 +; arg2 +;arg3 dc.l \4 +; move.\0 d0,d1 +; endm +; -! get.b 1,,label,four -! dc.l 1 +; get.b 1,,label,four +; dc.l 1 dc.l 1 -! dc.l 2 +; dc.l 2 dc.l 2 -!label dc.l four +;label dc.l four label: dc.l four -! move.b d0,d1 +; move.b d0,d1 move.b d0,d1 -! \ No newline at end of file +; \ No newline at end of file diff --git a/gas/testsuite/gasp/mri/narg.out b/gas/testsuite/gasp/mri/narg.out index c960d79..723ebc1 100644 --- a/gas/testsuite/gasp/mri/narg.out +++ b/gas/testsuite/gasp/mri/narg.out @@ -1,38 +1,38 @@ -!loop macro arg1,arg2,arg3 -! dc.l NARG -! ifne NARG -! dc.l arg1 -! loop arg2,arg3 -! endc -! endm -! +;loop macro arg1,arg2,arg3 +; dc.l NARG +; ifne NARG +; dc.l arg1 +; loop arg2,arg3 +; endc +; endm +; -! loop 1,2,3 -! dc.l 3 +; loop 1,2,3 +; dc.l 3 dc.l 3 -! ifne 3 -! dc.l 1 +; ifne 3 +; dc.l 1 dc.l 1 -! loop 2,3 -! dc.l 2 +; loop 2,3 +; dc.l 2 dc.l 2 -! ifne 2 -! dc.l 2 +; ifne 2 +; dc.l 2 dc.l 2 -! loop 3, -! dc.l 1 +; loop 3, +; dc.l 1 dc.l 1 -! ifne 1 -! dc.l 3 +; ifne 1 +; dc.l 3 dc.l 3 -! loop , -! dc.l 0 +; loop , +; dc.l 0 dc.l 0 -! ifne 0 -! dc.l -! loop , -! endc -! endc -! endc -! endc -! \ No newline at end of file +; ifne 0 +; dc.l +; loop , +; endc +; endc +; endc +; endc +; \ No newline at end of file diff --git a/gas/testsuite/gasp/mri/rept.out b/gas/testsuite/gasp/mri/rept.out index ce2f5fc..da4ed6b 100644 --- a/gas/testsuite/gasp/mri/rept.out +++ b/gas/testsuite/gasp/mri/rept.out @@ -1,16 +1,16 @@ -! rept 3 -! dc.l 1 -! endr -! dc.l 1 +; rept 3 +; dc.l 1 +; endr +; dc.l 1 dc.l 1 -! REPT 2 -! dc.l 1 -! ENDR -! dc.l 1 +; REPT 2 +; dc.l 1 +; ENDR +; dc.l 1 dc.l 1 -! REPT 1 -! dc.l 1 -! ENDR -! dc.l 1 +; REPT 1 +; dc.l 1 +; ENDR +; dc.l 1 dc.l 1 -! \ No newline at end of file +; \ No newline at end of file -- 2.7.4