• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Create ELF symbol that is global object and has absolute value
2 __asm__(
3     ".global bar\n"
4     ".type bar,object\n"
5     "bar = 0x1\n");
6 
7 long x, y;