• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download

main(void)1 int main(void)
2 {
3     __int128_t n = 1;
4     n = n + n;
5     return n; //%self.expect("p n", substrs=['(__int128_t) $0 = 2'])
6               //%self.expect("p n + 6", substrs=['(__int128) $1 = 8'])
7               //%self.expect("p n + n", substrs=['(__int128) $2 = 4'])
8 }
9