diff options
author | Zhenqiang Chen <zhenqiang.chen@linaro.org> | 2014-11-17 05:52:26 +0000 |
---|---|---|
committer | Zhenqiang Chen <zqchen@gcc.gnu.org> | 2014-11-17 05:52:26 +0000 |
commit | 2d52a3a19d16f75e57f5278d722e227d29ba4d03 (patch) | |
tree | f005f7c543c6200411ad017985122790e2488d1b /gcc/expmed.c | |
parent | 2e0f134153b4ac30da86de0a918fadcd4675a153 (diff) | |
download | gcc-2d52a3a19d16f75e57f5278d722e227d29ba4d03.zip gcc-2d52a3a19d16f75e57f5278d722e227d29ba4d03.tar.gz gcc-2d52a3a19d16f75e57f5278d722e227d29ba4d03.tar.bz2 |
cfgexpand.c (expand_gimple_cond): Check ccmp.
2014-11-17 Zhenqiang Chen <zhenqiang.chen@linaro.org>
* cfgexpand.c (expand_gimple_cond): Check ccmp.
* expmed.c (emit_cstore): Make it global.
* expmed.h: #include "insn-codes.h"
(emit_cstore): New prototype.
* expr.c (expand_operands): Make it global.
* expr.h (expand_operands): New prototype.
* optabs.c (get_rtx_code): Make it global.
* optabs.h (get_rtx_code): New prototype.
From-SVN: r217640
Diffstat (limited to 'gcc/expmed.c')
-rw-r--r-- | gcc/expmed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/expmed.c b/gcc/expmed.c index b099dc2..0304e46 100644 --- a/gcc/expmed.c +++ b/gcc/expmed.c @@ -5109,7 +5109,7 @@ expand_and (machine_mode mode, rtx op0, rtx op1, rtx target) } /* Helper function for emit_store_flag. */ -static rtx +rtx emit_cstore (rtx target, enum insn_code icode, enum rtx_code code, machine_mode mode, machine_mode compare_mode, int unsignedp, rtx x, rtx y, int normalizep, |