[llvm-commits] [llvm] r141984 - /llvm/trunk/lib/MC/MCAsmInfo.cpp

Owen Anderson resistor at mac.com
Fri Oct 14 13:28:57 PDT 2011


Author: resistor
Date: Fri Oct 14 15:28:57 2011
New Revision: 141984

URL: http://llvm.org/viewvc/llvm-project?rev=141984&view=rev
Log:
Disable code/data region symbols on ELF targets, where different mapping symbols are used for ARM/Thumb mode code. This should only be re-enabled once we have a solution to properly distinguish these.

Modified:
    llvm/trunk/lib/MC/MCAsmInfo.cpp

Modified: llvm/trunk/lib/MC/MCAsmInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/MC/MCAsmInfo.cpp?rev=141984&r1=141983&r2=141984&view=diff
==============================================================================
--- llvm/trunk/lib/MC/MCAsmInfo.cpp (original)
+++ llvm/trunk/lib/MC/MCAsmInfo.cpp Fri Oct 14 15:28:57 2011
@@ -62,7 +62,7 @@
   JT8Begin = "$d.";
   JT16Begin = "$d.";
   JT32Begin = "$d.";
-  SupportsDataRegions = true;
+  SupportsDataRegions = false;
   SunStyleELFSectionSwitchSyntax = false;
   UsesELFSectionDirectiveForBSS = false;
   AlignDirective = "\t.align\t";





More information about the llvm-commits mailing list