mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-22 04:55:50 -04:00

They're not that common, and falling back is definitely better than throwing an error instead of the result. If we feel motivated, we might end up implementing support for these, but it's unclear whether it's worth the effort/complexity. Fixes PR38925. <rdar://problem/44436068> llvm-svn: 342262
9 lines
267 B
C
9 lines
267 B
C
int main(void)
|
|
{
|
|
__int128_t n = 1;
|
|
n = n + n;
|
|
return n; //%self.expect("p n", substrs=['(__int128_t) $0 = 2'])
|
|
//%self.expect("p n + 6", substrs=['(__int128) $1 = 8'])
|
|
//%self.expect("p n + n", substrs=['(__int128) $2 = 4'])
|
|
}
|