summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/AsmPrinter.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-04-03 22:28:33 +0000
committerChris Lattner <sabre@nondot.org>2010-04-03 22:28:33 +0000
commit0c08d092049c025c9ccf7143e39f39dc4e30d6b4 (patch)
tree1e27df0eddebd915eb0b8f96e38bedf3c03879ee /include/llvm/CodeGen/AsmPrinter.h
parentfd60b8b4842c04e272a5cbdd404ed88d63d6df61 (diff)
downloadllvm-0c08d092049c025c9ccf7143e39f39dc4e30d6b4.tar.gz
llvm-0c08d092049c025c9ccf7143e39f39dc4e30d6b4.tar.bz2
llvm-0c08d092049c025c9ccf7143e39f39dc4e30d6b4.tar.xz
asmstreamerize the .size directive for function bodies, force clients
of printOffset to pass in a stream to print to. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100296 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/AsmPrinter.h')
-rw-r--r--include/llvm/CodeGen/AsmPrinter.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h
index 93dc97b94e..79c2eb1c92 100644
--- a/include/llvm/CodeGen/AsmPrinter.h
+++ b/include/llvm/CodeGen/AsmPrinter.h
@@ -269,11 +269,6 @@ namespace llvm {
///
void EmitInt32(int Value) const;
- /// EmitInt64 - Emit a long long directive and value.
- ///
- void EmitInt64(uint64_t Value) const;
-
-
/// EmitLabelDifference - Emit something like ".long Hi-Lo" where the size
/// in bytes of the directive is specified by Size and Hi/Lo specify the
/// labels. This implicitly uses .set if it is available.
@@ -349,7 +344,7 @@ namespace llvm {
virtual void EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV);
/// printOffset - This is just convenient handler for printing offsets.
- void printOffset(int64_t Offset) const;
+ void printOffset(int64_t Offset, raw_ostream &OS) const;
/// isBlockOnlyReachableByFallthough - Return true if the basic block has
/// exactly one predecessor and the control transfer mechanism between