modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/981223-1.c (about)

     1  /* The problem on IA-64 is that the assembler emits
     2  
     3     Warning: Additional NOP may be necessary to workaround Itanium
     4     processor A/B step errata  */
     5  
     6  /* { dg-prune-output "Assembler messages" } */
     7  /* { dg-prune-output "Additional NOP may be necessary" } */
     8  
     9  
    10  __complex__ float
    11  func (__complex__ float x)
    12  {
    13      if (__real__ x == 0.0)
    14  	return 1.0;
    15      else
    16  	return 0.0;
    17  }