summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2012-12-10 22:00:20 +0000
committerEric Christopher <echristo@gmail.com>2012-12-10 22:00:20 +0000
commit9171fb9cfb25b2e2db64131c15b497de459f69fc (patch)
treef4fd338be55ec44eba6f7978fa4cf2296d940dc2 /include
parent9e81a440f5229f13e21031c208fdecbe07b056c7 (diff)
downloadllvm-9171fb9cfb25b2e2db64131c15b497de459f69fc.tar.gz
llvm-9171fb9cfb25b2e2db64131c15b497de459f69fc.tar.bz2
llvm-9171fb9cfb25b2e2db64131c15b497de459f69fc.tar.xz
Fix a coding style nit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169776 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/TargetLowering.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h
index 1cef274c34..48083eee57 100644
--- a/include/llvm/Target/TargetLowering.h
+++ b/include/llvm/Target/TargetLowering.h
@@ -1753,9 +1753,9 @@ public:
SDValue BuildExactSDIV(SDValue Op1, SDValue Op2, DebugLoc dl,
SelectionDAG &DAG) const;
SDValue BuildSDIV(SDNode *N, SelectionDAG &DAG, bool IsAfterLegalization,
- std::vector<SDNode*>* Created) const;
+ std::vector<SDNode*> *Created) const;
SDValue BuildUDIV(SDNode *N, SelectionDAG &DAG, bool IsAfterLegalization,
- std::vector<SDNode*>* Created) const;
+ std::vector<SDNode*> *Created) const;
//===--------------------------------------------------------------------===//