diff options
author | Chris Lattner <sabre@nondot.org> | 2010-09-27 06:34:01 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-09-27 06:34:01 +0000 |
commit | b5b71e07afd3f0212a5e7352c10b0a8208c748ea (patch) | |
tree | 32aaa35d81ff759f909fd7cade9ad3b480d2f0bb /llvm/lib | |
parent | a0a820fadb15eca53680dac2eb241140649ab74e (diff) | |
download | bcm5719-llvm-b5b71e07afd3f0212a5e7352c10b0a8208c748ea.tar.gz bcm5719-llvm-b5b71e07afd3f0212a5e7352c10b0a8208c748ea.zip |
improve indentation
llvm-svn: 114815
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/X86/X86ISelLowering.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index 8d15067dffe..55daf769cff 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp @@ -2199,8 +2199,8 @@ X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee, GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) { OpFlags = X86II::MO_PLT; } else if (Subtarget->isPICStyleStubAny() && - (GV->isDeclaration() || GV->isWeakForLinker()) && - Subtarget->getDarwinVers() < 9) { + (GV->isDeclaration() || GV->isWeakForLinker()) && + Subtarget->getDarwinVers() < 9) { // PC-relative references to external symbols should go through $stub, // unless we're building with the leopard linker or later, which // automatically synthesizes these stubs. @@ -2219,7 +2219,7 @@ X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee, getTargetMachine().getRelocationModel() == Reloc::PIC_) { OpFlags = X86II::MO_PLT; } else if (Subtarget->isPICStyleStubAny() && - Subtarget->getDarwinVers() < 9) { + Subtarget->getDarwinVers() < 9) { // PC-relative references to external symbols should go through $stub, // unless we're building with the leopard linker or later, which // automatically synthesizes these stubs. |