diff options
| author | Sanjay Patel <spatel@rotateright.com> | 2017-10-04 20:26:25 +0000 |
|---|---|---|
| committer | Sanjay Patel <spatel@rotateright.com> | 2017-10-04 20:26:25 +0000 |
| commit | 4c33d5213b91b367a8392c19b4a110f62243a91d (patch) | |
| tree | c0e922294cbbe929ae0d18c28b24b59b4b966730 /llvm/tools/bugpoint | |
| parent | 63ed8c6c2e28300d4841389a21bc5853b9f43a99 (diff) | |
| download | bcm5719-llvm-4c33d5213b91b367a8392c19b4a110f62243a91d.tar.gz bcm5719-llvm-4c33d5213b91b367a8392c19b4a110f62243a91d.zip | |
[SimplifyCFG] put the optional assumption cache pointer in the options struct; NFCI
This is a follow-up to https://reviews.llvm.org/D38138.
I fixed the capitalization of some functions because we're changing those
lines anyway and that helped verify that we weren't accidentally dropping
any options by using default param values.
llvm-svn: 314930
Diffstat (limited to 'llvm/tools/bugpoint')
| -rw-r--r-- | llvm/tools/bugpoint/CrashDebugger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/bugpoint/CrashDebugger.cpp b/llvm/tools/bugpoint/CrashDebugger.cpp index 2cd19bdccbd..9097917d5fe 100644 --- a/llvm/tools/bugpoint/CrashDebugger.cpp +++ b/llvm/tools/bugpoint/CrashDebugger.cpp @@ -648,7 +648,7 @@ bool ReduceSimplifyCFG::TestBlocks(std::vector<const BasicBlock *> &BBs) { ++BBIt; continue; } - SimplifyCFG(&*BBIt++, TTI); + simplifyCFG(&*BBIt++, TTI); } // Verify we didn't break anything std::vector<std::string> Passes; |

