diff options
| author | Eric Christopher <echristo@gmail.com> | 2013-10-14 21:52:23 +0000 | 
|---|---|---|
| committer | Eric Christopher <echristo@gmail.com> | 2013-10-14 21:52:23 +0000 | 
| commit | 755711e510e2c59f341441c1a8b8f3a64c9dfad3 (patch) | |
| tree | c3e7347bfbd48185f756309a52f5d566693d5dbd /llvm | |
| parent | 584d71c6cbd59e3b4baa3901fee4fe4a279baf47 (diff) | |
| download | bcm5719-llvm-755711e510e2c59f341441c1a8b8f3a64c9dfad3.tar.gz bcm5719-llvm-755711e510e2c59f341441c1a8b8f3a64c9dfad3.zip  | |
Reformat this routine slightly.
llvm-svn: 192630
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Target/X86/X86ISelLowering.cpp | 18 | 
1 files changed, 8 insertions, 10 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index 47ce3ac8cf9..62966ded234 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp @@ -8210,10 +8210,9 @@ static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,    Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),                                                           is64Bit ? 257 : 256)); -  SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), -                                      DAG.getIntPtrConstant(0), -                                      MachinePointerInfo(Ptr), -                                      false, false, false, 0); +  SDValue ThreadPointer = +      DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0), +                  MachinePointerInfo(Ptr), false, false, false, 0);    unsigned char OperandFlags = 0;    // Most TLS accesses are not RIP relative, even on x86-64.  One exception is @@ -8235,21 +8234,20 @@ static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,    // emit "addl x@ntpoff,%eax" (local exec)    // or "addl x@indntpoff,%eax" (initial exec)    // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic) -  SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl, -                                           GA->getValueType(0), -                                           GA->getOffset(), OperandFlags); +  SDValue TGA = +      DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0), +                                 GA->getOffset(), OperandFlags);    SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);    if (model == TLSModel::InitialExec) {      if (isPIC && !is64Bit) {        Offset = DAG.getNode(ISD::ADD, dl, PtrVT, -                          DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), +                           DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),                             Offset);      }      Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset, -                         MachinePointerInfo::getGOT(), false, false, false, -                         0); +                         MachinePointerInfo::getGOT(), false, false, false, 0);    }    // The address of the thread local variable is the add of the thread  | 

