OSDN Git Service

Fix an over-pessimization about GlobalVariable addresses in X86FastISel.
authorDan Gohman <gohman@apple.com>
Mon, 29 Sep 2008 21:13:15 +0000 (21:13 +0000)
committerDan Gohman <gohman@apple.com>
Mon, 29 Sep 2008 21:13:15 +0000 (21:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56802 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86FastISel.cpp

index d266451..3bce3b0 100644 (file)
@@ -462,7 +462,7 @@ bool X86FastISel::X86SelectAddress(Value *V, X86AddressMode &AM, bool isCall) {
   }
 
   // If all else fails, try to materialize the value in a register.
-  if (!AM.GV && getTargetMachine()->symbolicAddressesAreRIPRel()) {
+  if (!AM.GV || !getTargetMachine()->symbolicAddressesAreRIPRel()) {
     if (AM.Base.Reg == 0) {
       AM.Base.Reg = getRegForValue(V);
       return AM.Base.Reg != 0;