From: Aaron Ballman Date: Tue, 9 May 2017 15:12:03 +0000 (+0000) Subject: Amend r302535; ifndef and ifdef are different, as it turns out. X-Git-Tag: llvmorg-5.0.0-rc1~5593 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3234647df61e1fb10363ec6299e4ac13e0cdbce0;p=platform%2Fupstream%2Fllvm.git Amend r302535; ifndef and ifdef are different, as it turns out. llvm-svn: 302537 --- diff --git a/llvm/lib/Target/ARM/ARMTargetMachine.cpp b/llvm/lib/Target/ARM/ARMTargetMachine.cpp index 4f2b926..5583d61 100644 --- a/llvm/lib/Target/ARM/ARMTargetMachine.cpp +++ b/llvm/lib/Target/ARM/ARMTargetMachine.cpp @@ -13,7 +13,7 @@ #include "ARM.h" #include "ARMCallLowering.h" #include "ARMLegalizerInfo.h" -#ifndef LLVM_BUILD_GLOBAL_ISEL +#ifdef LLVM_BUILD_GLOBAL_ISEL #include "ARMRegisterBankInfo.h" #endif #include "ARMSubtarget.h"