summaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/SimplifyCFG.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2013-05-23 16:09:15 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2013-05-23 16:09:15 +0000
commit603100d3de4ba34bf5a7274acf7942083a1e2641 (patch)
tree9ae02ece980edcd821a13f993686d2a945eeebd0 /lib/Transforms/Utils/SimplifyCFG.cpp
parenta32218a7eca458e55217f5a0674c23351a9472ac (diff)
downloadllvm-603100d3de4ba34bf5a7274acf7942083a1e2641.tar.gz
llvm-603100d3de4ba34bf5a7274acf7942083a1e2641.tar.bz2
llvm-603100d3de4ba34bf5a7274acf7942083a1e2641.tar.xz
More symbols that should be static.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182590 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/SimplifyCFG.cpp')
-rw-r--r--lib/Transforms/Utils/SimplifyCFG.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Utils/SimplifyCFG.cpp b/lib/Transforms/Utils/SimplifyCFG.cpp
index 052ad85551..07c4d058c8 100644
--- a/lib/Transforms/Utils/SimplifyCFG.cpp
+++ b/lib/Transforms/Utils/SimplifyCFG.cpp
@@ -1362,8 +1362,8 @@ static bool SinkThenElseCodeToEnd(BranchInst *BI1) {
///
/// \return The pointer to the value of the previous store if the store can be
/// hoisted into the predecessor block. 0 otherwise.
-Value *isSafeToSpeculateStore(Instruction *I, BasicBlock *BrBB,
- BasicBlock *StoreBB, BasicBlock *EndBB) {
+static Value *isSafeToSpeculateStore(Instruction *I, BasicBlock *BrBB,
+ BasicBlock *StoreBB, BasicBlock *EndBB) {
StoreInst *StoreToHoist = dyn_cast<StoreInst>(I);
if (!StoreToHoist)
return 0;