diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-02-25 11:02:00 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-02-25 11:02:00 +0000 |
commit | b01d86b3159a571158781d631bea5eda25d1868f (patch) | |
tree | 038c27532b41eac7ee07b14542e40e1d12a9a8ec /llvm/lib/MC/ELFObjectWriter.cpp | |
parent | 073f2b4795aae459df548abf03aaa57bb627f194 (diff) | |
download | bcm5719-llvm-b01d86b3159a571158781d631bea5eda25d1868f.tar.gz bcm5719-llvm-b01d86b3159a571158781d631bea5eda25d1868f.zip |
Fix UTF8 chars to ASCII.
llvm-svn: 230479
Diffstat (limited to 'llvm/lib/MC/ELFObjectWriter.cpp')
-rw-r--r-- | llvm/lib/MC/ELFObjectWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/ELFObjectWriter.cpp b/llvm/lib/MC/ELFObjectWriter.cpp index b4948e659fb..48199058c1f 100644 --- a/llvm/lib/MC/ELFObjectWriter.cpp +++ b/llvm/lib/MC/ELFObjectWriter.cpp @@ -1041,7 +1041,7 @@ ELFObjectWriter::computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout, // in defined ones. // // FIXME: All name handling should be done before we get to the writer, - // including dealing with GNU-style version suffixes. Fixing this isn’t + // including dealing with GNU-style version suffixes. Fixing this isn't // trivial. // // We thus have to be careful to not perform the symbol version replacement |