diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-05-16 16:18:54 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-05-16 16:18:54 -0400 |
commit | 4ac0968744362763aa58b43608edb0c7997cb35b (patch) | |
tree | b7cd28edfbd1d8f64a125d9c409dc9576d0c1b09 /gcc | |
parent | 930b4e398ec14f8ea10acb0451655802ed4bb134 (diff) | |
download | gcc-4ac0968744362763aa58b43608edb0c7997cb35b.zip gcc-4ac0968744362763aa58b43608edb0c7997cb35b.tar.gz gcc-4ac0968744362763aa58b43608edb0c7997cb35b.tar.bz2 |
Use #ifdef TARGET_EDOM, not #if.
From-SVN: r7307
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6805,7 +6805,7 @@ expand_builtin (exp, target, subtarget, mode, ignore) emit_cmp_insn (target, target, EQ, 0, GET_MODE (target), 0, 0); emit_jump_insn (gen_beq (lab1)); -#if TARGET_EDOM +#ifdef TARGET_EDOM { #ifdef GEN_ERRNO_RTX rtx errno_rtx = GEN_ERRNO_RTX; |