summaryrefslogtreecommitdiffstats
path: root/llvm/tools/bugpoint
diff options
context:
space:
mode:
authorSanjay Patel <spatel@rotateright.com>2017-10-04 20:26:25 +0000
committerSanjay Patel <spatel@rotateright.com>2017-10-04 20:26:25 +0000
commit4c33d5213b91b367a8392c19b4a110f62243a91d (patch)
treec0e922294cbbe929ae0d18c28b24b59b4b966730 /llvm/tools/bugpoint
parent63ed8c6c2e28300d4841389a21bc5853b9f43a99 (diff)
downloadbcm5719-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.cpp2
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;
OpenPOWER on IntegriCloud