aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Constant.h
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2008-10-13 10:28:12 +0000
committerGabor Greif <ggreif@gmail.com>2008-10-13 10:28:12 +0000
commit63e0669b8eb660c793f56acc71a7424eee6c2b9f (patch)
treebc099e4cd8c6b0cbb84428beb68ecec386a3de8c /include/llvm/Constant.h
parentc9f7ef7e7a95ff95a779a057297e0973d21aca02 (diff)
downloadexternal_llvm-63e0669b8eb660c793f56acc71a7424eee6c2b9f.zip
external_llvm-63e0669b8eb660c793f56acc71a7424eee6c2b9f.tar.gz
external_llvm-63e0669b8eb660c793f56acc71a7424eee6c2b9f.tar.bz2
fix typo's
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57435 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Constant.h')
-rw-r--r--include/llvm/Constant.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Constant.h b/include/llvm/Constant.h
index 12e1dd2..b0a130f 100644
--- a/include/llvm/Constant.h
+++ b/include/llvm/Constant.h
@@ -33,7 +33,7 @@ namespace 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
+/// Constants are created on demand as needed and never deleted: thus clients
/// don't have to worry about the lifetime of the objects.
/// @brief LLVM Constant Representation
class Constant : public User {
@@ -66,7 +66,7 @@ public:
/// relocations which cannot be resolved at compile time.
bool ContainsRelocations() const;
- // Specialize get/setOperand for Constant's as their operands are always
+ // Specialize get/setOperand for Constants as their operands are always
// constants as well.
Constant *getOperand(unsigned i) {
return static_cast<Constant*>(User::getOperand(i));