Just use getParent() instead of getModuleFromVal when the value is a Function.

llvm-svn: 108358
This commit is contained in:
Dan Gohman 2010-07-14 21:12:44 +00:00
parent efb8dbb3f1
commit 1513217e27
1 changed files with 1 additions and 1 deletions

View File

@ -2129,7 +2129,7 @@ void Value::print(raw_ostream &ROS, AssemblyAnnotationWriter *AAW) const {
} else if (const MDNode *N = dyn_cast<MDNode>(this)) {
const Function *F = N->getFunction();
SlotTracker SlotTable(F);
AssemblyWriter W(OS, SlotTable, F ? getModuleFromVal(F) : 0, AAW);
AssemblyWriter W(OS, SlotTable, F ? F->getParent() : 0, AAW);
W.printMDNodeBody(N);
} else if (const NamedMDNode *N = dyn_cast<NamedMDNode>(this)) {
SlotTracker SlotTable(N->getParent());