blob: 3c39972ba40e6f1dfa1168a2445c27c5c525307f [file] [log] [blame]
// { dg-do assemble { target sparc-sun-* } }
// { dg-options "-S" }
// GROUPS passed asm-extension
// This used to crash because c_expand_asm_keyword didn't know what to
// do with this. The parser rules were changed to accept an expr, instead
// of a stmt.
extern void traptable(void);
main()
{
asm("wr %0,%%tbr" : : "r" (traptable));
}