mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-10 11:41:37 +00:00
remove obsolete comment.
llvm-svn: 93661
This commit is contained in:
parent
98a02fecdc
commit
6a28d54192
@ -238,16 +238,13 @@ bool ReduceMiscompilingFunctions::TestFuncs(const std::vector<Function*>&Funcs){
|
|||||||
///
|
///
|
||||||
static void DisambiguateGlobalSymbols(Module *M) {
|
static void DisambiguateGlobalSymbols(Module *M) {
|
||||||
for (Module::global_iterator I = M->global_begin(), E = M->global_end();
|
for (Module::global_iterator I = M->global_begin(), E = M->global_end();
|
||||||
I != E; ++I) {
|
I != E; ++I)
|
||||||
// Don't mangle asm names.
|
|
||||||
if (!I->hasName())
|
if (!I->hasName())
|
||||||
I->setName("anon_global");
|
I->setName("anon_global");
|
||||||
}
|
for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
|
||||||
for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) {
|
|
||||||
if (!I->hasName())
|
if (!I->hasName())
|
||||||
I->setName("anon_fn");
|
I->setName("anon_fn");
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/// ExtractLoops - Given a reduced list of functions that still exposed the bug,
|
/// ExtractLoops - Given a reduced list of functions that still exposed the bug,
|
||||||
/// check to see if we can extract the loops in the region without obscuring the
|
/// check to see if we can extract the loops in the region without obscuring the
|
||||||
|
Loading…
x
Reference in New Issue
Block a user