aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2009-07-28 21:49:47 +0000
committerDevang Patel <dpatel@apple.com>2009-07-28 21:49:47 +0000
commit0a9f7b9c3ebe7d0ec033462e1a7c9101279956f9 (patch)
tree9bddc13cdc61792a453dbcf675fd2ab642545d5d /include
parent7cc2c406d0c82bcf329048ced643ec77fcae60e6 (diff)
downloadexternal_llvm-0a9f7b9c3ebe7d0ec033462e1a7c9101279956f9.zip
external_llvm-0a9f7b9c3ebe7d0ec033462e1a7c9101279956f9.tar.gz
external_llvm-0a9f7b9c3ebe7d0ec033462e1a7c9101279956f9.tar.bz2
Rename MDNode.h header. It defines MDnode and other metadata classes.
New name is Metadata.h. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77370 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Metadata.h (renamed from include/llvm/MDNode.h)11
1 files changed, 3 insertions, 8 deletions
diff --git a/include/llvm/MDNode.h b/include/llvm/Metadata.h
index 551c2e9..d055e9c 100644
--- a/include/llvm/MDNode.h
+++ b/include/llvm/Metadata.h
@@ -1,4 +1,4 @@
-//===-- llvm/Metadata.h - Constant class subclass definitions ---*- C++ -*-===//
+//===-- llvm/Metadata.h - Metadata definitions ------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@@ -8,13 +8,8 @@
//===----------------------------------------------------------------------===//
//
/// @file
-/// This file contains the declarations for the subclasses of Constant,
-/// which represent the different flavors of constant values that live in LLVM.
-/// Note that Constants are immutable (once created they never change) and are
-/// fully shared by structural equivalence. This means that two structurally
-/// equivalent constants will always have the same address. Constant's are
-/// created on demand as needed and never deleted: thus clients don't have to
-/// worry about the lifetime of the objects.
+/// This file contains the declarations for metadata subclasses.
+/// They represent the different flavors of metadata that live in LLVM.
//
//===----------------------------------------------------------------------===//