summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/DwarfWriter.h
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2006-01-27 20:31:25 +0000
committerJim Laskey <jlaskey@mac.com>2006-01-27 20:31:25 +0000
commitda427fa5daa4fca1a437e1ca8ff2e68925688fe9 (patch)
tree685dca72071e42149717029185ecd2186555d249 /include/llvm/CodeGen/DwarfWriter.h
parentb3a7e21b7e441ed4d51e673b0890aed6b0524566 (diff)
downloadllvm-da427fa5daa4fca1a437e1ca8ff2e68925688fe9.tar.gz
llvm-da427fa5daa4fca1a437e1ca8ff2e68925688fe9.tar.bz2
llvm-da427fa5daa4fca1a437e1ca8ff2e68925688fe9.tar.xz
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.h16
1 files changed, 8 insertions, 8 deletions
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')