verify-uselistorder: Add missing `static`

llvm-svn: 214595
This commit is contained in:
Duncan P. N. Exon Smith 2014-08-01 23:31:13 +00:00
parent 3441ffe98d
commit 9a2017bfc3
1 changed files with 1 additions and 1 deletions

View File

@ -414,7 +414,7 @@ static void shuffleValueUseLists(Value *V, std::minstd_rand0 &Gen,
} }
/// Shuffle all use-lists in a module. /// 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"); DEBUG(dbgs() << "*** shuffle-use-lists ***\n");
std::minstd_rand0 Gen(std::minstd_rand0::default_seed + SeedOffset); std::minstd_rand0 Gen(std::minstd_rand0::default_seed + SeedOffset);
DenseSet<Value *> Seen; DenseSet<Value *> Seen;