From 3e30c2a3c54c50246e6cccf0c8842619e29fe66c Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Tue, 5 Jan 2010 20:41:31 +0000 Subject: NamedMDNode is a collection MDNodes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92761 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/VMCore/MetadataTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'unittests') diff --git a/unittests/VMCore/MetadataTest.cpp b/unittests/VMCore/MetadataTest.cpp index e118568..e374789 100644 --- a/unittests/VMCore/MetadataTest.cpp +++ b/unittests/VMCore/MetadataTest.cpp @@ -123,7 +123,7 @@ TEST(NamedMDNodeTest, Search) { MDNode *n = MDNode::get(Context, &V, 1); MDNode *n2 = MDNode::get(Context, &V2, 1); - MetadataBase *Nodes[2] = { n, n2 }; + MDNode *Nodes[2] = { n, n2 }; Module *M = new Module("MyModule", getGlobalContext()); const char *Name = "llvm.NMD1"; -- cgit v1.1