This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug bootstrap/11640] [3.4 Regression]: bootstrap ICE in rtl_verify_flow_info, at cfgrtl.c:2151


PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11640


olh at suse dot de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


------- Additional Comments From olh at suse dot de  2003-10-05 08:14 -------

olh@mandarine:~> cat pr11640.c
int
internal_insn_latency (int insn_code, int insn2_code )
{
  switch (insn_code)
    {
    case 256:
      switch (insn2_code)
        {
        case 267:
          return 8;
        case 266:
          return 8;
        case 265:
          return 8;
        case 264:
          return 8;
        case 263:
          return 8;
        }
      break;
    case 273:
      switch (insn2_code)
        {
        case 267:
          return 5;
        case 266:
          return 5;
        case 277:
          return 3;
        }
      break;
    }
  return 0;
}

olh@mandarine:~> install-gcc-head/bin/gcc -v -Wall -c pr11640.c
Reading specs from /home/olh/install-gcc-head/lib/gcc/powerpc64-unknown-linux-gnu/3.4/specs
Configured with: /home/olh/gcc-head/configure --prefix=/home/olh/install-gcc-head --disable-nls --enable-threads=posix --enable-__cxa_atexit --enable-languages=c,c++,f77,objc
Thread model: posix
gcc version 3.4 20031004 (experimental)
 /home/olh/install-gcc-head/libexec/gcc/powerpc64-unknown-linux-gnu/3.4/cc1 -quiet -v -D__unix__ -D__gnu_linux__ -D__linux__ -Dunix -D__unix -Dlinux -D__linux -Asystem=unix -Asystem=posix pr11640.c -quiet -dumpbase pr11640.c -auxbase pr11640 -Wall -version -o /tmp/cc2Zgeju.s
ignoring nonexistent directory "/home/olh/install-gcc-head/lib/gcc/powerpc64-unknown-linux-gnu/3.4/../../../../powerpc64-unknown-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
 /usr/local/include
 /home/olh/install-gcc-head/include
 /home/olh/install-gcc-head/lib/gcc/powerpc64-unknown-linux-gnu/3.4/include
 /usr/include
End of search list.
GNU C version 3.4 20031004 (experimental) (powerpc64-unknown-linux-gnu)
        compiled by GNU C version 3.4 20031004 (experimental).
GGC heuristics: --param ggc-min-expand=30 --param ggc-min-heapsize=4096
 as -a64 -mppc64 -V -Qy -o pr11640.o /tmp/cc2Zgeju.s
GNU assembler version 2.14.90 (powerpc64-suse-linux) using BFD version 2.14.90 20030701


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]