]> gcc.gnu.org Git - gcc.git/commitdiff
(volatile_insn_p): Call ourselves in recursive scan.
authorRichard Kenner <kenner@gcc.gnu.org>
Sun, 29 May 1994 19:58:14 +0000 (15:58 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Sun, 29 May 1994 19:58:14 +0000 (15:58 -0400)
From-SVN: r7383

gcc/rtlanal.c

index 980226f2b645f12ad830c63ce6505365ed13cb0f..188fb93a15903b7659823c0578457839998074bb 100644 (file)
@@ -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;
          }
       }
This page took 0.090923 seconds and 5 git commands to generate.