summaryrefslogtreecommitdiffstats
path: root/llvm/lib/MC/MCAsmInfoDarwin.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-11-28 17:00:49 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-11-28 17:00:49 +0000
commit848493d886c46f00cea951ec8b76615b63f86f61 (patch)
tree68d03eb75750e63d586c30cc69224f1e00e8953e /llvm/lib/MC/MCAsmInfoDarwin.cpp
parent9c19956845808a7a0972e58b08864da36c1ddaf0 (diff)
downloadbcm5719-llvm-848493d886c46f00cea951ec8b76615b63f86f61.tar.gz
bcm5719-llvm-848493d886c46f00cea951ec8b76615b63f86f61.zip
The global prefix is always one char. Don't use a string for it.
llvm-svn: 195926
Diffstat (limited to 'llvm/lib/MC/MCAsmInfoDarwin.cpp')
-rw-r--r--llvm/lib/MC/MCAsmInfoDarwin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCAsmInfoDarwin.cpp b/llvm/lib/MC/MCAsmInfoDarwin.cpp
index 704c8161f88..8a021ce3ae7 100644
--- a/llvm/lib/MC/MCAsmInfoDarwin.cpp
+++ b/llvm/lib/MC/MCAsmInfoDarwin.cpp
@@ -23,7 +23,7 @@ void MCAsmInfoDarwin::anchor() { }
MCAsmInfoDarwin::MCAsmInfoDarwin() {
// Common settings for all Darwin targets.
// Syntax:
- GlobalPrefix = "_";
+ GlobalPrefix = '_';
PrivateGlobalPrefix = "L";
LinkerPrivateGlobalPrefix = "l";
HasSingleParameterDotFile = false;
OpenPOWER on IntegriCloud