diff options
| author | Bill Wendling <isanbard@gmail.com> | 2009-08-29 12:17:53 +0000 |
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2009-08-29 12:17:53 +0000 |
| commit | 946b521498866b3d83c4447c9c0ece6095a56874 (patch) | |
| tree | 04a763d2f82019d9cb1232b8cf7340661fb6718e /include/llvm/CodeGen/AsmPrinter.h | |
| parent | 502c35e863882790a94ad432d0a03c4a7e1a0aad (diff) | |
| download | external_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.h | 4 |
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; |
