ia64.c (ia64_va_arg): Pass pointer for variable-sized type through convert_memory_add...
[gcc.git] / gcc / testsuite / gcc.c-torture / compile / 981223-1.c
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 }