1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

mingw uses .data and .text, not _data and _text.

llvm-svn: 77435
This commit is contained in:
Chris Lattner 2009-07-29 05:25:42 +00:00
parent f8a9c2f843
commit 12483f0bd7

View File

@ -590,8 +590,8 @@ getSectionForMergeableConstant(SectionKind Kind) const {
//===----------------------------------------------------------------------===//
TargetLoweringObjectFileCOFF::TargetLoweringObjectFileCOFF() {
TextSection = getOrCreateSection("_text", true, SectionKind::Text);
DataSection = getOrCreateSection("_data", true, SectionKind::DataRel);
TextSection = getOrCreateSection("\t.text", true, SectionKind::Text);
DataSection = getOrCreateSection("\t.data", true, SectionKind::DataRel);
}
void TargetLoweringObjectFileCOFF::