diff options
author | Chris Lattner <sabre@nondot.org> | 2003-04-25 05:23:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-04-25 05:23:27 +0000 |
commit | 322bc2b5aa02dc9be24cf1f81c69e67f246aa52b (patch) | |
tree | 2ffc22a4d4d060f2e22b57b91dec9d1e320e95a3 | |
parent | 4deaf3b5c0f3aba5ea663e0be1721b316f542ba6 (diff) |
Fix method name type-o
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5933 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Target/TargetData.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetData.h b/include/llvm/Target/TargetData.h index 671a5edba5..66176a5ff1 100644 --- a/include/llvm/Target/TargetData.h +++ b/include/llvm/Target/TargetData.h @@ -64,7 +64,7 @@ public: unsigned char getDoubleAlignment() const { return DoubleAlignment; } unsigned char getPointerAlignment() const { return PointerAlignment; } unsigned char getPointerSize() const { return PointerSize; } - unsigned char getIntegerRegize() const { return IntegerRegSize; } + unsigned char getIntegerRegSize() const { return IntegerRegSize; } AnnotationID getStructLayoutAID() const { return AID; } // getTypeSize - Return the number of bytes neccesary to hold the specified |