asm_register_bad_name.c (113B)
1 int test_main(void) { 2 register long v __asm__("notareg") = 1; 3 __asm__ volatile("" : : "r"(v)); 4 return 0; 5 }