diff options
author | Richard Henderson <rth@cygnus.com> | 1999-02-28 07:58:15 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-02-28 07:58:15 -0800 |
commit | 532eedf4ed0003c90fcc460e5dfe94bd925108a2 (patch) | |
tree | 8d3202a676dc06a203626681e9722a4b945e7721 | |
parent | 456bf3e3b353b0dd7ddcbc337c161448faaa1b12 (diff) | |
download | gcc-532eedf4ed0003c90fcc460e5dfe94bd925108a2.zip gcc-532eedf4ed0003c90fcc460e5dfe94bd925108a2.tar.gz gcc-532eedf4ed0003c90fcc460e5dfe94bd925108a2.tar.bz2 |
* sparc.md (blockage, nonlocal_goto_receiver): Set length to 0.
From-SVN: r25509
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/sparc/sparc.md | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 75fa77a..8264f6a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Sun Feb 28 15:57:06 1999 Richard Henderson <rth@cygnus.com> + + * sparc.md (blockage, nonlocal_goto_receiver): Set length to 0. + Sun Feb 28 14:47:53 1999 Arturo Montes <mitosys@colomsat.com.co> * config/i386/t-sco5gas (crti.o): New target. diff --git a/gcc/config/sparc/sparc.md b/gcc/config/sparc/sparc.md index 7e27aea..55d0742 100644 --- a/gcc/config/sparc/sparc.md +++ b/gcc/config/sparc/sparc.md @@ -7601,7 +7601,8 @@ (define_insn "blockage" [(unspec_volatile [(const_int 0)] 0)] "" - "") + "" + [(set_attr "length" "0")]) ;; Prepare to return any type including a structure value. @@ -8187,7 +8188,8 @@ (define_insn "nonlocal_goto_receiver" [(unspec_volatile [(const_int 0)] 5)] "flag_pic" - "") + "" + [(set_attr "length" "0")]) (define_insn "trap" [(trap_if (const_int 1) (const_int 5))] @@ -8220,4 +8222,3 @@ "t%C0\\t%%xcc, %1" [(set_attr "type" "misc") (set_attr "length" "1")]) - |