diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-03-10 22:00:25 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-03-10 22:00:25 +0000 |
commit | 6b9998b3ebd4f21ba726e65e5fe2636e4eeed598 (patch) | |
tree | 9cff11f02df5b1c25dfa40e0c0587221eec2e9ee /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | eb2c19a5493b2dd669b374e09a078adb6e47b7e5 (diff) | |
download | bcm5719-llvm-6b9998b3ebd4f21ba726e65e5fe2636e4eeed598.tar.gz bcm5719-llvm-6b9998b3ebd4f21ba726e65e5fe2636e4eeed598.zip |
Create symbols marking the start of a section earlier.
This lets us pass the symbol to the constructor and avoid the mutable field.
This also opens the way for outputting the symbol only when needed, instead
of outputting them at the start of the file.
llvm-svn: 231859
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 757e8783d0b..df967d58151 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -371,7 +371,7 @@ class DwarfDebug : public AsmPrinterHandler { /// \brief Emit a specified accelerator table. void emitAccel(DwarfAccelTable &Accel, const MCSection *Section, - StringRef TableName, StringRef SymName); + StringRef TableName); /// \brief Emit visible names into a hashed accelerator table section. void emitAccelNames(); |