diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-21 23:36:01 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-21 23:36:01 +0000 |
commit | 354c0165e755fd857bc89792243b82387ee3936d (patch) | |
tree | 8b9840ae90cbb7affb9059094afbe2d1ac9d2d0d /include/llvm/CodeGen/MachineConstantPool.h | |
parent | cb4596364369ea36ff5675eb12fc62d0c6f1f0dd (diff) |
no really, I can spell!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76679 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineConstantPool.h')
-rw-r--r-- | include/llvm/CodeGen/MachineConstantPool.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/MachineConstantPool.h b/include/llvm/CodeGen/MachineConstantPool.h index acbbc664dc..5ae641fb9e 100644 --- a/include/llvm/CodeGen/MachineConstantPool.h +++ b/include/llvm/CodeGen/MachineConstantPool.h @@ -44,7 +44,7 @@ public: const Type *getType() const { return Ty; } - /// getRelocatationInfo - This method classifies the entry according to + /// getRelocationInfo - This method classifies the entry according to /// whether or not it may generate a relocation entry. This must be /// conservative, so if it might codegen to a relocatable entry, it should say /// so. The return values are: @@ -55,7 +55,7 @@ public: /// resolvable by the static linker, so the dynamic linker will never see /// them. /// 2: This entry may have arbitrary relocations. - virtual unsigned getRelocatationInfo() const = 0; + virtual unsigned getRelocationInfo() const = 0; virtual int getExistingMachineCPValue(MachineConstantPool *CP, unsigned Alignment) = 0; @@ -109,7 +109,7 @@ public: const Type *getType() const; - /// getRelocatationInfo - This method classifies the entry according to + /// getRelocationInfo - This method classifies the entry according to /// whether or not it may generate a relocation entry. This must be /// conservative, so if it might codegen to a relocatable entry, it should say /// so. The return values are: @@ -120,7 +120,7 @@ public: /// resolvable by the static linker, so the dynamic linker will never see /// them. /// 2: This entry may have arbitrary relocations. - unsigned getRelocatationInfo() const; + unsigned getRelocationInfo() const; }; /// The MachineConstantPool class keeps track of constants referenced by a |