diff options
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/optabs.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d148538..e2b5cd6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ 2005-04-21 Nathan Sidwell <nathan@codesourcery.com> + * optabs.c (gen_conditional_trap): Restore #define. + * alias.c (true_dependence): Remove 'abort' from comments. Use gcc_assert and gcc_unreachable as appropriate. (canon_true_dependence): Likewise. diff --git a/gcc/optabs.c b/gcc/optabs.c index 8d20ad7..c180da1 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -127,6 +127,7 @@ static rtx vector_compare_rtx (tree, bool, enum insn_code); #ifndef HAVE_conditional_trap #define HAVE_conditional_trap 0 +#define gen_conditional_trap(a,b) (gcc_unreachable (), NULL_RTX) #endif /* Add a REG_EQUAL note to the last insn in INSNS. TARGET is being set to |