mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-21 03:05:15 +00:00
mingw uses .data and .text, not _data and _text.
llvm-svn: 77435
This commit is contained in:
parent
f8a9c2f843
commit
12483f0bd7
@ -590,8 +590,8 @@ getSectionForMergeableConstant(SectionKind Kind) const {
|
|||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
TargetLoweringObjectFileCOFF::TargetLoweringObjectFileCOFF() {
|
TargetLoweringObjectFileCOFF::TargetLoweringObjectFileCOFF() {
|
||||||
TextSection = getOrCreateSection("_text", true, SectionKind::Text);
|
TextSection = getOrCreateSection("\t.text", true, SectionKind::Text);
|
||||||
DataSection = getOrCreateSection("_data", true, SectionKind::DataRel);
|
DataSection = getOrCreateSection("\t.data", true, SectionKind::DataRel);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TargetLoweringObjectFileCOFF::
|
void TargetLoweringObjectFileCOFF::
|
||||||
|
Loading…
x
Reference in New Issue
Block a user