-
February 21st, 2009, 03:59 AM #1Junior Member
- Join Date
- Feb 2009
- Posts
- 2
Not getting 64 bit specific truncation warnings.
Dear All,
I am porting my C/C++ project (currently functioning on 32 bit machine) into 64 bit SUSUE linux machine
uname -a
Linux msglxd03 2.6.5-7.97-smp #1 SMP Fri Jul 2 14:21:59 UTC 2004 x86_64 x86_64 x86_64 GNU/Linux
I am trying to get the warning Specific to long to int and pointer to int assignments.
===================================
Written warnings2.c file which conatin :
#include<stdio.h>
#include<stdlib.h>
int main()
{
unsigned int i;
unsigned long z = -1L;
printf("size of unsigned is %d bytes!\n", sizeof(z));
printf("size of int is %d bytes!\n", sizeof(i));
i = z;
printf("\ni is = %d",i);
i = &z;
printf("\ni is = %d",i);
return 1;
}
==========================
After compiling (either with gcc or cc)
$ gcc -m64 -Wall -march=x86-64 -o war2.o warnings2.c
it gave me following warning:
warnings2.c: In function main:
warnings2.c:9: warning: format %d expects type int, but argument 2 has type long unsigned int
warnings2.c:10: warning: format %d expects type int, but argument 2 has type long unsigned int
warnings2.c:14: warning: assignment makes integer from pointer without a cast
There isn't any warning for long to int assignment(truncation) @ line 12.
On sparcv9 it is giving warnings when used >> CC +w2 -xarch=v9
"warnings2.cpp", line 12: Warning: Conversion of 64 bit type value to "int" causes truncation.
1 Warning(s) detected.
Could anybody please tell me how could we get the similar warnings on Linux?
Which all options are need with gcc to get the truncation warnings on 64-bit linux machine?
We have already tried -m64 -Wall -mcpu=x86-64 -Wconversion -pedantic and -Wshorten-64-to-32, but didn't get truncation warnings ?
Thanks in advance,
Regards.
-
February 24th, 2009, 11:05 AM #2
Oops. Sorry - wrong answer.
What OS are you using to produce the warnings above?
-
February 25th, 2009, 12:56 AM #3Junior Member
- Join Date
- Feb 2009
- Posts
- 2
I could easily get warnings on Solaris OS using CC +w2 -xarch=v9 but, even after trying almost all the compiler switces, I am not getting truncation warnings on SUSE 64 bit.
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Assigning specific applications to specific sound devices
By Technoobalicious in forum Technical SupportReplies: 0Last Post: December 13th, 2008, 09:01 AM



LinkBack URL
About LinkBacks



Reply With Quote

Several links no longer work
Cisco's Internetworking Technology...