mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Revise comment and error message for the Bug 38 situation. Also, make it
print out the name of the function being used. llvm-svn: 12347
This commit is contained in:
parent
ef6d2c5e2d
commit
3cae3bad22
@ -167,10 +167,11 @@ bool ReduceMisCodegenFunctions::TestFuncs(const std::vector<Function*> &Funcs,
|
||||
// actually use the resolved function
|
||||
Inst->replaceUsesOfWith(F, castResolver);
|
||||
} else {
|
||||
// FIXME: need to take care of cases where a function is used that
|
||||
// is not an instruction, e.g. global variable initializer...
|
||||
std::cerr <<
|
||||
"UNSUPPORTED: External function used as global initializer!\n";
|
||||
// FIXME: need to take care of cases where a function is used by
|
||||
// something other than an instruction; e.g., global variable
|
||||
// initializers and constant expressions.
|
||||
std::cerr << "UNSUPPORTED: Non-instruction is using an external "
|
||||
<< "function, " << F->getName() << "().\n";
|
||||
abort();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user