diff options
Diffstat (limited to 'gcc/genflags.c')
-rw-r--r-- | gcc/genflags.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/genflags.c b/gcc/genflags.c index 53641010935..fcfd2f1bd89 100644 --- a/gcc/genflags.c +++ b/gcc/genflags.c @@ -195,7 +195,7 @@ gen_insn (int line_no, rtx insn) int len; int truth = maybe_eval_c_test (XSTR (insn, 2)); - lt = strchr (name, '<'); + lt = strchr (name, '<'); if (lt && strchr (lt + 1, '>')) { message_with_line (line_no, "unresolved iterator"); @@ -203,7 +203,7 @@ gen_insn (int line_no, rtx insn) return; } - gt = strchr (name, '>'); + gt = strchr (name, '>'); if (lt || gt) { message_with_line (line_no, |