Skip to content

Commit 4277019

Browse files
committed
verify-uselistorder: Add missing static
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214595 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 99a43c2 commit 4277019

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/verify-uselistorder/verify-uselistorder.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ static void shuffleValueUseLists(Value *V, std::minstd_rand0 &Gen,
414414
}
415415

416416
/// Shuffle all use-lists in a module.
417-
void shuffleUseLists(Module &M, unsigned SeedOffset) {
417+
static void shuffleUseLists(Module &M, unsigned SeedOffset) {
418418
DEBUG(dbgs() << "*** shuffle-use-lists ***\n");
419419
std::minstd_rand0 Gen(std::minstd_rand0::default_seed + SeedOffset);
420420
DenseSet<Value *> Seen;

0 commit comments

Comments
 (0)