summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2007-04-30 19:14:56 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2007-04-30 19:14:56 +0000
commitbd4e080a16b3baf0b6c463ad57adac0b5e0262dc (patch)
tree15dd8d4cccb791b94973b8acab000590a6119441 /include
parente47e75b46185aaa4927ea1da94ff8574bcc3458a (diff)
downloadllvm-bd4e080a16b3baf0b6c463ad57adac0b5e0262dc.tar.gz
llvm-bd4e080a16b3baf0b6c463ad57adac0b5e0262dc.tar.bz2
llvm-bd4e080a16b3baf0b6c463ad57adac0b5e0262dc.tar.xz
Fix comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36596 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/GlobalValue.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/llvm/GlobalValue.h b/include/llvm/GlobalValue.h
index 4f6b1e6a9f..d2d9130370 100644
--- a/include/llvm/GlobalValue.h
+++ b/include/llvm/GlobalValue.h
@@ -8,9 +8,10 @@
//===----------------------------------------------------------------------===//
//
// This file is a common base class of all globally definable objects. As such,
-// it is subclassed by GlobalVariable and by Function. This is used because you
-// can do certain things with these global objects that you can't do to anything
-// else. For example, use the address of one as a constant.
+// it is subclassed by GlobalVariable, GlobalAlias and by Function. This is
+// used because you can do certain things with these global objects that you
+// can't do to anything else. For example, use the address of one as a
+// constant.
//
//===----------------------------------------------------------------------===//