diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2007-04-30 19:14:56 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2007-04-30 19:14:56 +0000 |
commit | 16e2c5fec105f3134afc650e90d6bd3911ae1f74 (patch) | |
tree | 103c2c8ffee827f881f34507fa14d703f8b71aae /llvm | |
parent | 6b77c3ed52b06130a206c729ea578bf724de94e8 (diff) | |
download | bcm5719-llvm-16e2c5fec105f3134afc650e90d6bd3911ae1f74.tar.gz bcm5719-llvm-16e2c5fec105f3134afc650e90d6bd3911ae1f74.zip |
Fix comment
llvm-svn: 36596
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/GlobalValue.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/include/llvm/GlobalValue.h b/llvm/include/llvm/GlobalValue.h index 4f6b1e6a9f9..d2d91303707 100644 --- a/llvm/include/llvm/GlobalValue.h +++ b/llvm/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. // //===----------------------------------------------------------------------===// |