Do not use getNamedValue() to lookup NamedMDNode. NamedMDNode is not a GlobalValue.
authorDevang Patel <dpatel@apple.com>
Thu, 30 Jul 2009 18:46:29 +0000 (18:46 +0000)
committerDevang Patel <dpatel@apple.com>
Thu, 30 Jul 2009 18:46:29 +0000 (18:46 +0000)
Thanks Benjamin Kramer!

llvm-svn: 77619

llvm/lib/VMCore/Module.cpp

index 87d4b05..9e1622e 100644 (file)
@@ -293,7 +293,7 @@ GlobalAlias *Module::getNamedAlias(const StringRef &Name) const {
 /// specified name. This method returns null if a MDNode with the specified
 /// name is not found.
 NamedMDNode *Module::getNamedMetadata(const StringRef &Name) const {
-  return dyn_cast_or_null<NamedMDNode>(getNamedValue(Name));
+  return dyn_cast_or_null<NamedMDNode>(getValueSymbolTable().lookup(Name));
 }
 
 //===----------------------------------------------------------------------===//