diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-04-29 22:22:16 +0700 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-04-29 22:22:16 +0700 |
commit | b1426dcfab43b6a4a06948f7adc971ac6bd0cb4a (patch) | |
tree | 8ae1f5d4119464747368d789545f9b92992317ab /tests/runner.py | |
parent | 5ba1a0e94fdb1f230efa34bfe5e2725ff7abef39 (diff) |
Use the standard int64_t rather than __int64_t.
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 4092d3de..426d864a 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -1133,10 +1133,11 @@ m_divisor is 1091269979 if Settings.USE_TYPED_ARRAYS != 2: return self.skip('full i64 stuff only in ta2') src = r''' + #include <stdint.h> #include <stdio.h> int main(int argc, char ** argv){ int y=-133; - __int64_t x= ((__int64_t)((short)(y)))*(100 + argc); + int64_t x= ((int64_t)((short)(y)))*(100 + argc); if(x>0) printf(">0\n"); else |