Modified cast so that it converts the int to a long before casting to

a pointer.  This evades a warning emitted by GCC when we cast from
unsigned int (32 bit) to void * (64 bit) on SparcV9.

llvm-svn: 10435
This commit is contained in:
John Criswell 2003-12-12 19:57:48 +00:00
parent 604cd3c85f
commit c6efb11f02
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ void *X86TargetMachine::getJITStubForFunction(Function *F,
MachineCodeEmitter &MCE) {
if (TheJITResolver == 0)
TheJITResolver = new JITResolver(MCE);
return (void*)TheJITResolver->getLazyResolver(F);
return (void*)((unsigned long)TheJITResolver->getLazyResolver(F));
}
/// addFunctionReference - This method is called when we need to emit the