blob: a04594ee77520971cd54f00d91fe8769731ec629 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
/* LLVM LOCAL test not applicable */
/* { dg-require-fdump "" } */
#ifdef __hppa__
#define REGISTER "1"
#else
#define REGISTER "0"
#endif
void baz(void)
{
register int xyzzy asm(REGISTER) = 1;
asm volatile ("" : : "r"(xyzzy));
}
/* { dg-final { scan-tree-dump-times "asm\[^\\r\\n\]*xyzzy" 1 "optimized" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */