mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-04 01:51:31 +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() {
|
||||
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::
|
||||
|
Loading…
Reference in New Issue
Block a user