summaryrefslogtreecommitdiff
path: root/gcc/emit-rtl.c
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2000-09-18 23:48:35 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2000-09-18 23:48:35 +0000
commit065336b4c1b38f3c379b948bb62c33c14385101f (patch)
treee1c98380b4c77a4941e8be6b560e3df753d037ef /gcc/emit-rtl.c
parentdeb2362f31a551925e4c47d430190431f09e732c (diff)
downloadgcc-065336b4c1b38f3c379b948bb62c33c14385101f.tar.gz
* emit-rtl.c (init_emit_once): Initialize const_tiny_rtx
for BImode. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36520 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/emit-rtl.c')
-rw-r--r--gcc/emit-rtl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c
index 3fb272dd4c0..2b907171ebf 100644
--- a/gcc/emit-rtl.c
+++ b/gcc/emit-rtl.c
@@ -4178,6 +4178,10 @@ init_emit_once (line_numbers)
if (GET_MODE_CLASS (mode) == MODE_CC)
const_tiny_rtx[0][(int) mode] = const0_rtx;
+ const_tiny_rtx[0][(int) BImode] = const0_rtx;
+ if (STORE_FLAG_VALUE == 1)
+ const_tiny_rtx[1][(int) BImode] = const1_rtx;
+
/* For bounded pointers, `&const_tiny_rtx[0][0]' is not the same as
`(rtx *) const_tiny_rtx'. The former has bounds that only cover
`const_tiny_rtx[0]', whereas the latter has bounds that cover all. */