aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen/AsmPrinter.h
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-08-29 12:17:53 +0000
committerBill Wendling <isanbard@gmail.com>2009-08-29 12:17:53 +0000
commit946b521498866b3d83c4447c9c0ece6095a56874 (patch)
tree04a763d2f82019d9cb1232b8cf7340661fb6718e /include/llvm/CodeGen/AsmPrinter.h
parent502c35e863882790a94ad432d0a03c4a7e1a0aad (diff)
downloadexternal_llvm-946b521498866b3d83c4447c9c0ece6095a56874.zip
external_llvm-946b521498866b3d83c4447c9c0ece6095a56874.tar.gz
external_llvm-946b521498866b3d83c4447c9c0ece6095a56874.tar.bz2
Add a form of EOL which emits the text version of a DWARF format encoding. This
doesn't handle all values of the formatting. Those can be added as needed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80427 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/AsmPrinter.h')
-rw-r--r--include/llvm/CodeGen/AsmPrinter.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h
index 55fc3b0..8ce56c8 100644
--- a/include/llvm/CodeGen/AsmPrinter.h
+++ b/include/llvm/CodeGen/AsmPrinter.h
@@ -268,7 +268,9 @@ namespace llvm {
void EOL() const;
void EOL(const std::string &Comment) const;
void EOL(const char* Comment) const;
-
+ void EOL(const std::string &Comment, unsigned Encoding) const;
+ void EOL(const char *Comment, unsigned Encoding) const;
+
/// EmitULEB128Bytes - Emit an assembler byte data directive to compose an
/// unsigned leb128 value.
void EmitULEB128Bytes(unsigned Value) const;