add clang
This commit is contained in:
parent
4715742aa8
commit
9a4b261179
890 changed files with 229323 additions and 20 deletions
19
05/tcc-final-old/tests/tests2/72_long_long_constant.c
Normal file
19
05/tcc-final-old/tests/tests2/72_long_long_constant.c
Normal file
|
@ -0,0 +1,19 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
long long int res = 0;
|
||||
|
||||
if (res < -2147483648LL) {
|
||||
printf("Error: 0 < -2147483648\n");
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
if (2147483647LL < res) {
|
||||
printf("Error: 2147483647 < 0\n");
|
||||
return 2;
|
||||
}
|
||||
else
|
||||
printf("long long constant test ok.\n");
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue