diff options
author | Bob Wilson <bob.wilson@apple.com> | 2009-07-14 18:44:34 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2009-07-14 18:44:34 +0000 |
commit | 53dadfcae0ea56e86c639a91b33d643a4939a8f8 (patch) | |
tree | cd4887343e4d5cd1ca25ab51af4ed35597408d02 /lib | |
parent | 6402a27205b69388369c45332b7cef2e7b74bd20 (diff) | |
download | external_llvm-53dadfcae0ea56e86c639a91b33d643a4939a8f8.zip external_llvm-53dadfcae0ea56e86c639a91b33d643a4939a8f8.tar.gz external_llvm-53dadfcae0ea56e86c639a91b33d643a4939a8f8.tar.bz2 |
Remove an extra space.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75658 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/ARM/ARMISelLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMISelLowering.cpp b/lib/Target/ARM/ARMISelLowering.cpp index 9420d21..a9ef392 100644 --- a/lib/Target/ARM/ARMISelLowering.cpp +++ b/lib/Target/ARM/ARMISelLowering.cpp @@ -1702,7 +1702,7 @@ SDValue ARMTargetLowering::LowerBR_JT(SDValue Op, SelectionDAG &DAG) { MVT PTy = getPointerTy(); JumpTableSDNode *JT = cast<JumpTableSDNode>(Table); ARMFunctionInfo *AFI = DAG.getMachineFunction().getInfo<ARMFunctionInfo>(); - SDValue UId = DAG.getConstant(AFI->createJumpTableUId(), PTy); + SDValue UId = DAG.getConstant(AFI->createJumpTableUId(), PTy); SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PTy); Table = DAG.getNode(ARMISD::WrapperJT, dl, MVT::i32, JTI, UId); Index = DAG.getNode(ISD::MUL, dl, PTy, Index, DAG.getConstant(4, PTy)); |