diff options
author | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-11 17:15:13 +0000 |
---|---|---|
committer | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-11 17:15:13 +0000 |
commit | 8f87ecd58d4efd2ccc835fcd093158cad20d89af (patch) | |
tree | 5624f458493f288139ed43acd6483a3f285300bb /gcc | |
parent | 567bfdbba97ea2ba2f6beaba8609fcb07343990c (diff) | |
download | gcc-8f87ecd58d4efd2ccc835fcd093158cad20d89af.tar.gz |
* config/sh/sh.h (LABEL_ALIGN): Use UNSPECV_ALIGN instead of 1.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38910 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/config/sh/sh.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 186c339454a..cd7d321fac3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ 2001-01-11 Alexandre Oliva <aoliva@redhat.com> + * config/sh/sh.h (LABEL_ALIGN): Use UNSPECV_ALIGN instead of 1. + * Makefile.in (check-gcc//%, check-g++//%, check-g77//%, check-objc//%): Support parallel testing of multilibs. (TESTSUITEDIR): Set to testsuite by default, but override for diff --git a/gcc/config/sh/sh.h b/gcc/config/sh/sh.h index e78a46123a5..ebc98b3532f 100644 --- a/gcc/config/sh/sh.h +++ b/gcc/config/sh/sh.h @@ -401,7 +401,7 @@ do { \ (PREV_INSN (A_LABEL) \ && GET_CODE (PREV_INSN (A_LABEL)) == INSN \ && GET_CODE (PATTERN (PREV_INSN (A_LABEL))) == UNSPEC_VOLATILE \ - && XINT (PATTERN (PREV_INSN (A_LABEL)), 1) == 1) \ + && XINT (PATTERN (PREV_INSN (A_LABEL)), 1) == UNSPECV_ALIGN) \ /* explicit alignment insn in constant tables. */ \ ? INTVAL (XVECEXP (PATTERN (PREV_INSN (A_LABEL)), 0, 0)) \ : 0) |