diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2013-01-07 03:53:25 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2013-01-07 03:53:25 +0000 |
commit | 5f46c3c2e8d13c6ac8d3863d84e887f84c73f27a (patch) | |
tree | 3d5fa965599ec5a59ce64f2b21c4c111e36a1781 /include/llvm/Transforms/Utils/Local.h | |
parent | 6554666e0034ea1cc5c8095b34d1ffbe0f62f363 (diff) | |
download | external_llvm-5f46c3c2e8d13c6ac8d3863d84e887f84c73f27a.zip external_llvm-5f46c3c2e8d13c6ac8d3863d84e887f84c73f27a.tar.gz external_llvm-5f46c3c2e8d13c6ac8d3863d84e887f84c73f27a.tar.bz2 |
Make SimplifyCFG simply depend upon TargetTransformInfo and pass it
through as a reference rather than a pointer. There is always *some*
implementation of this available, so this simplifies code by not having
to test for whether it is available or not.
Further, it turns out there were piles of places where SimplifyCFG was
recursing and not passing down either TD or TTI. These are fixed to be
more pedantically consistent even though I don't have any particular
cases where it would matter.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171691 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms/Utils/Local.h')
-rw-r--r-- | include/llvm/Transforms/Utils/Local.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Transforms/Utils/Local.h b/include/llvm/Transforms/Utils/Local.h index 64137b1..687c9d5 100644 --- a/include/llvm/Transforms/Utils/Local.h +++ b/include/llvm/Transforms/Utils/Local.h @@ -135,8 +135,8 @@ bool EliminateDuplicatePHINodes(BasicBlock *BB); /// of the CFG. It returns true if a modification was made, possibly deleting /// the basic block that was pointed to. /// -bool SimplifyCFG(BasicBlock *BB, const DataLayout *TD = 0, - const TargetTransformInfo *TTI = 0); +bool SimplifyCFG(BasicBlock *BB, const TargetTransformInfo &TTI, + const DataLayout *TD = 0); /// FoldBranchToCommonDest - If this basic block is ONLY a setcc and a branch, /// and if a predecessor branches to us and one of our successors, fold the |