From: Chris Lattner Date: Thu, 1 Jun 2006 17:17:06 +0000 (+0000) Subject: Silence -pedantic warning X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=08a9a985dc7881cad0321ae95147f0a4b04647a8;p=oota-llvm.git Silence -pedantic warning git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28633 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/PowerPC/PPCJITInfo.cpp b/lib/Target/PowerPC/PPCJITInfo.cpp index 6ee10d78b63..98bc4e1fb99 100644 --- a/lib/Target/PowerPC/PPCJITInfo.cpp +++ b/lib/Target/PowerPC/PPCJITInfo.cpp @@ -165,7 +165,7 @@ PPCJITInfo::getLazyResolverFunction(JITCompilerFn Fn) { void *PPCJITInfo::emitFunctionStub(void *Fn, MachineCodeEmitter &MCE) { // If this is just a call to an external function, emit a branch instead of a // call. The code is the same except for one bit of the last instruction. - if (Fn != (void*)PPC32CompilationCallback) { + if (Fn != (void*)(intptr_t)PPC32CompilationCallback) { MCE.startFunctionStub(4*4); void *Addr = (void*)(intptr_t)MCE.getCurrentPCValue(); MCE.emitWordBE(0);