aboutsummaryrefslogtreecommitdiff
path: root/gcc/read-rtl.c
diff options
context:
space:
mode:
authorMichael Zolotukhin <michael.v.zolotukhin@intel.com>2012-11-30 08:43:07 +0000
committerKirill Yukhin <kyukhin@gcc.gnu.org>2012-11-30 08:43:07 +0000
commit52831d13a7292d81342570c90c863d26609450d1 (patch)
tree2769a75df04ce40f9a219fd231856354ce31fbcf /gcc/read-rtl.c
parente7b0b62dc0cdf46195cc3a1353a66812199cce30 (diff)
downloadgcc-52831d13a7292d81342570c90c863d26609450d1.zip
gcc-52831d13a7292d81342570c90c863d26609450d1.tar.gz
gcc-52831d13a7292d81342570c90c863d26609450d1.tar.bz2
gensupport.c (maybe_eval_c_test): Remove not-null check for expr.
* gensupport.c (maybe_eval_c_test): Remove not-null check for expr. * read-rtl.c (apply_iterators): Initialize condition with "" instead of NULL. From-SVN: r193988
Diffstat (limited to 'gcc/read-rtl.c')
-rw-r--r--gcc/read-rtl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/read-rtl.c b/gcc/read-rtl.c
index 7da12b5..6dd4fc5 100644
--- a/gcc/read-rtl.c
+++ b/gcc/read-rtl.c
@@ -546,7 +546,7 @@ apply_iterators (rtx original, rtx *queue)
{
/* Apply the current iterator values. Accumulate a condition to
say when the resulting rtx can be used. */
- condition = NULL;
+ condition = "";
FOR_EACH_VEC_ELT (iterator_uses, i, iuse)
{
if (iuse->iterator->group == &substs)