diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-01-27 20:31:25 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-01-27 20:31:25 +0000 |
commit | da427fa5daa4fca1a437e1ca8ff2e68925688fe9 (patch) | |
tree | 685dca72071e42149717029185ecd2186555d249 /include/llvm/CodeGen/DwarfWriter.h | |
parent | b3a7e21b7e441ed4d51e673b0890aed6b0524566 (diff) | |
download | external_llvm-da427fa5daa4fca1a437e1ca8ff2e68925688fe9.zip external_llvm-da427fa5daa4fca1a437e1ca8ff2e68925688fe9.tar.gz external_llvm-da427fa5daa4fca1a437e1ca8ff2e68925688fe9.tar.bz2 |
Using bit size of integers instead of ambiguous "long" et all.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25694 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/DwarfWriter.h')
-rw-r--r-- | include/llvm/CodeGen/DwarfWriter.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/llvm/CodeGen/DwarfWriter.h b/include/llvm/CodeGen/DwarfWriter.h index d60764e..c98dbbc 100644 --- a/include/llvm/CodeGen/DwarfWriter.h +++ b/include/llvm/CodeGen/DwarfWriter.h @@ -578,21 +578,21 @@ public: /// value. static unsigned SizeSLEB128(int Value); - /// EmitByte - Emit a byte directive and value. + /// EmitInt8 - Emit a byte directive and value. /// - void EmitByte(int Value) const; + void EmitInt8(int Value) const; - /// EmitShort - Emit a short directive and value. + /// EmitInt16 - Emit a short directive and value. /// - void EmitShort(int Value) const; + void EmitInt16(int Value) const; - /// EmitLong - Emit a long directive and value. + /// EmitInt32 - Emit a long directive and value. /// - void EmitLong(int Value) const; + void EmitInt32(int Value) const; - /// EmitLongLong - Emit a long long directive and value. + /// EmitInt64 - Emit a long long directive and value. /// - void EmitLongLong(uint64_t Value) const; + void EmitInt64(uint64_t Value) const; /// EmitString - Emit a string with quotes and a null terminator. /// Special characters are emitted properly. (Eg. '\t') |