aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen
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
commit6d718817f982b804ff516e43a47f38aa78d2a4a9 (patch)
tree1e27df0eddebd915eb0b8f96e38bedf3c03879ee /include/llvm/CodeGen
parent002afa95b6aa586b01580b73ad65a1f3c6f6dca4 (diff)
downloadexternal_llvm-6d718817f982b804ff516e43a47f38aa78d2a4a9.zip
external_llvm-6d718817f982b804ff516e43a47f38aa78d2a4a9.tar.gz
external_llvm-6d718817f982b804ff516e43a47f38aa78d2a4a9.tar.bz2
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')
-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 93dc97b..79c2eb1 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