From: Saleem Abdulrasool Date: Sun, 8 Jun 2014 00:34:27 +0000 (+0000) Subject: MC: fix ctor/dtor section for windows-itanium X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ed7fc4b7756ba948fe039655462ad1dcc9d7d7ca;p=platform%2Fupstream%2Fllvm.git MC: fix ctor/dtor section for windows-itanium This adjusts the section setup for the windows-itanium environment. This environment does not report to be a known windows msvc environment, even though it is (nearly) identical to the MSVC environment for C code. llvm-svn: 210406 --- diff --git a/llvm/lib/MC/MCObjectFileInfo.cpp b/llvm/lib/MC/MCObjectFileInfo.cpp index ee12ff3..d3d0832 100644 --- a/llvm/lib/MC/MCObjectFileInfo.cpp +++ b/llvm/lib/MC/MCObjectFileInfo.cpp @@ -598,7 +598,7 @@ void MCObjectFileInfo::InitCOFFMCObjectFileInfo(Triple T) { COFF::IMAGE_SCN_MEM_READ, SectionKind::getReadOnly()); - if (T.isKnownWindowsMSVCEnvironment()) { + if (T.isKnownWindowsMSVCEnvironment() || T.isWindowsItaniumEnvironment()) { StaticCtorSection = Ctx->getCOFFSection(".CRT$XCU", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |