summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>2014-08-01 23:31:13 +0000
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>2014-08-01 23:31:13 +0000
commit9a2017bfc37a84a1837fed5939236f5a8567ba5c (patch)
treeb3ff46e63966950371c81e65a9cc91837beefdee /llvm
parent3441ffe98dc12bad0b779c292a55670d70c277d7 (diff)
downloadbcm5719-llvm-9a2017bfc37a84a1837fed5939236f5a8567ba5c.tar.gz
bcm5719-llvm-9a2017bfc37a84a1837fed5939236f5a8567ba5c.zip
verify-uselistorder: Add missing `static`
llvm-svn: 214595
Diffstat (limited to 'llvm')
-rw-r--r--llvm/tools/verify-uselistorder/verify-uselistorder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/verify-uselistorder/verify-uselistorder.cpp b/llvm/tools/verify-uselistorder/verify-uselistorder.cpp
index 429daa13b98..9ad04099f49 100644
--- a/llvm/tools/verify-uselistorder/verify-uselistorder.cpp
+++ b/llvm/tools/verify-uselistorder/verify-uselistorder.cpp
@@ -414,7 +414,7 @@ static void shuffleValueUseLists(Value *V, std::minstd_rand0 &Gen,
}
/// Shuffle all use-lists in a module.
-void shuffleUseLists(Module &M, unsigned SeedOffset) {
+static void shuffleUseLists(Module &M, unsigned SeedOffset) {
DEBUG(dbgs() << "*** shuffle-use-lists ***\n");
std::minstd_rand0 Gen(std::minstd_rand0::default_seed + SeedOffset);
DenseSet<Value *> Seen;
OpenPOWER on IntegriCloud