From: Richard Kenner Date: Sun, 29 May 1994 19:58:14 +0000 (-0400) Subject: (volatile_insn_p): Call ourselves in recursive scan. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=31001f722819375a994b3e69fc7f4e1b624179c2;p=gcc.git (volatile_insn_p): Call ourselves in recursive scan. From-SVN: r7383 --- diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index 980226f2b64..188fb93a159 100644 --- a/gcc/rtlanal.c +++ b/gcc/rtlanal.c @@ -1,5 +1,5 @@ /* Analyze RTL for C-Compiler - Copyright (C) 1987, 1988, 1991, 1992, 1993 Free Software Foundation, Inc. + Copyright (C) 1987, 88, 91, 92, 93, 1994 Free Software Foundation, Inc. This file is part of GNU CC. @@ -1406,14 +1406,14 @@ volatile_insn_p (x) { if (fmt[i] == 'e') { - if (volatile_refs_p (XEXP (x, i))) + if (volatile_insn_p (XEXP (x, i))) return 1; } if (fmt[i] == 'E') { register int j; for (j = 0; j < XVECLEN (x, i); j++) - if (volatile_refs_p (XVECEXP (x, i, j))) + if (volatile_insn_p (XVECEXP (x, i, j))) return 1; } }