From da427fa5daa4fca1a437e1ca8ff2e68925688fe9 Mon Sep 17 00:00:00 2001 From: Jim Laskey Date: Fri, 27 Jan 2006 20:31:25 +0000 Subject: 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 --- include/llvm/CodeGen/DwarfWriter.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'include/llvm/CodeGen') diff --git a/include/llvm/CodeGen/DwarfWriter.h b/include/llvm/CodeGen/DwarfWriter.h index d60764e150..c98dbbce39 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') -- cgit v1.2.3-70-g09d2