diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-03-05 18:55:50 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-03-05 18:55:50 +0000 |
commit | 86bd6a120232787e0a3e144aa8be62267f45c531 (patch) | |
tree | 6ed947228798b4a09f8f531e5dbbfed0dc39eeee /llvm/lib/MC/MCAsmInfo.cpp | |
parent | 71b9b6be1bca11f35172b8bef128ca76959dfd08 (diff) | |
download | bcm5719-llvm-86bd6a120232787e0a3e144aa8be62267f45c531.tar.gz bcm5719-llvm-86bd6a120232787e0a3e144aa8be62267f45c531.zip |
Use the generic Lfunc_begin label on ppc.
This removes yet another custom label to mark the start of a function.
llvm-svn: 231390
Diffstat (limited to 'llvm/lib/MC/MCAsmInfo.cpp')
-rw-r--r-- | llvm/lib/MC/MCAsmInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/MC/MCAsmInfo.cpp b/llvm/lib/MC/MCAsmInfo.cpp index 04b804209a7..8a7ee94a593 100644 --- a/llvm/lib/MC/MCAsmInfo.cpp +++ b/llvm/lib/MC/MCAsmInfo.cpp @@ -39,6 +39,7 @@ MCAsmInfo::MCAsmInfo() { CommentString = "#"; LabelSuffix = ":"; UseAssignmentForEHBegin = false; + NeedsLocalForSize = false; PrivateGlobalPrefix = "L"; PrivateLabelPrefix = PrivateGlobalPrefix; LinkerPrivateGlobalPrefix = ""; |