- 论坛徽章:
- 0
|
- MacBookPro tmp $ cat a.c
- #include <stdio.h>
- #include <stdlib.h>
- #include <assert.h>
- #include <limits.h>
- int main ()
- {
- int last_jobid = INT_MAX;
- printf ("%0x\n", INT_MAX);
- printf ("%0x\n", INT_MAX+1);
- if (last_jobid+1 > (unsigned int)INT_MAX) {
- printf("ok\n");
- }
- return 0;
- }
- MacBookPro tmp $ gcc -v
- Using built-in specs.
- Target: i686-apple-darwin10
- Configured with: /var/tmp/gcc/gcc-5659~1/src/configure --disable-checking --enable-werror --prefix=/usr --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin10 --program-prefix=i686-apple-darwin10- --host=x86_64-apple-darwin10 --target=i686-apple-darwin10 --with-gxx-include-dir=/include/c++/4.2.1
- Thread model: posix
- gcc version 4.2.1 (Apple Inc. build 5659)
- MacBookPro tmp $ gcc a.c
- a.c: In function ‘main’:
- a.c:10: warning: integer overflow in expression
- MacBookPro tmp $ file a.out
- a.out: Mach-O 64-bit executable x86_64
- MacBookPro tmp $ ./a.out
- 7fffffff
- 80000000
- ok
- MacBookPro tmp $ gcc -m32 a.c
- a.c: In function ‘main’:
- a.c:10: warning: integer overflow in expression
- MacBookPro tmp $ file a.out
- a.out: Mach-O executable i386
- liuleideMacBookPro tmp $ ./a.out
- 7fffffff
- 80000000
- ok
- MacBookPro tmp $
复制代码 |
|