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
func(__complex__ float x)11 func (__complex__ float x)
12 {
13     if (__real__ x == 0.0)
14 	return 1.0;
15     else
16 	return 0.0;
17 }
18