From: Richard Kenner Date: Mon, 16 May 1994 20:18:54 +0000 (-0400) Subject: Use #ifdef TARGET_EDOM, not #if. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4ac0968744362763aa58b43608edb0c7997cb35b;p=gcc.git Use #ifdef TARGET_EDOM, not #if. From-SVN: r7307 --- diff --git a/gcc/expr.c b/gcc/expr.c index f6317ee267d..9910a5a59c7 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -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;