diff options
author | rearnsha <rearnsha@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-26 09:51:00 +0000 |
---|---|---|
committer | rearnsha <rearnsha@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-26 09:51:00 +0000 |
commit | b99882620570bd9e4f9fcca5edb1e27f7c4f97b2 (patch) | |
tree | f657195ecfd44a7d38241bda7b66d2be72da157e /gcc/ifcvt.c | |
parent | 15acd583a2b048e2f2effa2d5abc89147b548712 (diff) | |
download | gcc-b99882620570bd9e4f9fcca5edb1e27f7c4f97b2.tar.gz |
* ifcvt.c (cond_exec_get_condition): Set test_if to the SET_SRC
of get_pc.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34192 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ifcvt.c')
-rw-r--r-- | gcc/ifcvt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ifcvt.c b/gcc/ifcvt.c index 9b20b3ae503..1bdfae35604 100644 --- a/gcc/ifcvt.c +++ b/gcc/ifcvt.c @@ -267,7 +267,7 @@ cond_exec_get_condition (jump) rtx test_if, cond; if (any_condjump_p (jump)) - test_if = pc_set (jump); + test_if = SET_SRC (pc_set (jump)); else return NULL_RTX; cond = XEXP (test_if, 0); |