diff options
Diffstat (limited to 'llvm/lib/Target/AVR/MCTargetDesc/AVRTargetStreamer.cpp')
-rw-r--r-- | llvm/lib/Target/AVR/MCTargetDesc/AVRTargetStreamer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/AVR/MCTargetDesc/AVRTargetStreamer.cpp b/llvm/lib/Target/AVR/MCTargetDesc/AVRTargetStreamer.cpp index 3487a2bbb864..eccd343d79ab 100644 --- a/llvm/lib/Target/AVR/MCTargetDesc/AVRTargetStreamer.cpp +++ b/llvm/lib/Target/AVR/MCTargetDesc/AVRTargetStreamer.cpp @@ -32,11 +32,11 @@ void AVRTargetStreamer::finish() { OS.emitRawComment(" Declaring this symbol tells the CRT that it should"); OS.emitRawComment("copy all variables from program memory to RAM on startup"); - OS.EmitSymbolAttribute(DoCopyData, MCSA_Global); + OS.emitSymbolAttribute(DoCopyData, MCSA_Global); OS.emitRawComment(" Declaring this symbol tells the CRT that it should"); OS.emitRawComment("clear the zeroed data section on startup"); - OS.EmitSymbolAttribute(DoClearBss, MCSA_Global); + OS.emitSymbolAttribute(DoClearBss, MCSA_Global); } } // end namespace llvm |