fork(1) download
  1. #include <xmmintrin.h>
  2.  
  3. void crasher() {
  4. constexpr __m128 w = {1,2,3,4};
  5. asm ("addps %[w], %[w]" : : [w] ""(w));
  6. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp: In function ‘void crasher()’:
prog.cpp:6:1: internal compiler error: in ix86_print_operand, at config/i386/i386.c:17377
 }
 ^
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-6/README.Bugs> for instructions.
prog.cpp: Assembler messages:
prog.cpp:4: Warning: end of file not at end of a line; newline inserted
prog.cpp:5: Error: number of operands mismatch for `addps'
{standard input}: Error: open CFI at the end of file; missing .cfi_endproc directive
stdout
Standard output is empty