From: Chris Lattner Date: Wed, 12 Jul 2006 20:42:10 +0000 (+0000) Subject: An overaggressive #ifdef allows a function to fall off the bottom of the X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3d6721a4a1cf9e9a27d05b268f86b7a9ce663d6f;p=oota-llvm.git An overaggressive #ifdef allows a function to fall off the bottom of the function instead of returning a value. This sometimes allowed the ppc32 jit to be used in 64-bit mode. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29123 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/PowerPC/PPCTargetMachine.cpp b/lib/Target/PowerPC/PPCTargetMachine.cpp index 6af925cdae0..0bc9e7e5b07 100644 --- a/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/lib/Target/PowerPC/PPCTargetMachine.cpp @@ -39,9 +39,8 @@ unsigned PPC32TargetMachine::getJITMatchQuality() { #if defined(__POWERPC__) || defined (__ppc__) || defined(_POWER) if (sizeof(void*) == 4) return 10; -#else - return 0; #endif + return 0; } unsigned PPC64TargetMachine::getJITMatchQuality() { #if defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)