diff options
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h index a442fb25d20..2335bba5ff5 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -361,7 +361,7 @@ struct rtvec_def GTY(()) { /* Predicate yielding nonzero iff X is an rtx for a memory location. */ #define MEM_P(X) (GET_CODE (X) == MEM) -/* Prediacte yielding nonzero iff X is an rtx for a constant integer. */ +/* Predicate yielding nonzero iff X is an rtx for a constant integer. */ #define CONST_INT_P(X) (GET_CODE (X) == CONST_INT) /* Predicate yielding nonzero iff X is a label insn. */ |