lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
From: dan at ssc.com (Dan Wilder)
Subject: gcc: Internal compiler error: program cc1 got fatal signal 11

On Thu, Jan 08, 2004 at 11:12:46PM +0200, Georgi Guninski wrote:
> $ gcc --version
> 2.95.3
> $ cat gcc-crash.c
> int main(void)
> {
> printf("%c","msux"[0xcafebabe]);
> }
> $ gcc gcc-crash.c
> gcc: Internal compiler error: program cc1 got fatal signal 11

You don't need the printf.

$ gcc --version
2.95.4
$ cat gcc-crash.c
int main(void)
{
char a = "msux"[0xcafebabe];
}
$ gcc gcc-crash.c
gcc: Internal compiler error: program cc1 got fatal signal 11

-- 
Dan Wilder <dan@....com>


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ