blob: 0fef966e6763aa0b8bf72cc7aca77a2b2eb3ceef [file] [log] [blame]
extern void doit(int);
void
quick_doit(int x)
{
#ifdef __OPTIMIZE__
if (__builtin_constant_p (x)
&& x != 0)
asm volatile ("%0" : : "i#*X"(x));
else
#endif
doit(x);
}