diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-01-23 03:11:46 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-01-23 03:11:46 +0000 |
| commit | 4cf202ba066a1310d8968c8d069787254934e59b (patch) | |
| tree | c11be4e2c2e98a26772d0e2778384080638a2a0b /include/llvm/CodeGen | |
| parent | 4fe5d72765121893f77139889958d4f5e5ca69c5 (diff) | |
remove one form of EmitString, just use EmitBytes instead. We must
be careful to add a \0 at the end though, because EmitString didn't
do this.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94277 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
| -rw-r--r-- | include/llvm/CodeGen/AsmPrinter.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h index 305d246298..b45be2752b 100644 --- a/include/llvm/CodeGen/AsmPrinter.h +++ b/include/llvm/CodeGen/AsmPrinter.h @@ -265,12 +265,6 @@ namespace llvm { /// void EmitInt64(uint64_t Value) const; - /// EmitString - Emit a string with quotes and a null terminator. - /// Special characters are emitted properly. - /// @verbatim (Eg. '\t') @endverbatim - void EmitString(const StringRef String) const; - void EmitString(const char *String, unsigned Size) const; - /// EmitFile - Emit a .file directive. void EmitFile(unsigned Number, StringRef Name) const; |
