x86-64: Don't use temp for argument in a TImode register
[official-gcc.git] / gcc / testsuite / gcc.dg / const-elim-2.c
blobbc465cabaca41bb5ef369b7321b337f6ca60a71b
1 /* The string constant in this test case should be emitted exactly once. */
2 /* { dg-do compile } */
3 /* { dg-options "-O2" } */
4 /* { dg-final { scan-assembler-times "hi there" 1 { xfail nvptx-*-* pdp11-*-* } } } */
6 static inline int returns_23() { return 23; }
8 const char *test1(void) { if (returns_23()) return 0; return "hi there"; }
9 const char *test2(void) { return "hi there"; }
10 const char *test3(void) { return "hi there"; }