Use the integrated assembler by default on OpenBSD.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212771 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Brad Smith 2014-07-10 22:37:28 +00:00
parent fc6a659676
commit e39f7f95bc

View File

@ -43,7 +43,8 @@ SparcELFMCAsmInfo::SparcELFMCAsmInfo(StringRef TT) {
SunStyleELFSectionSwitchSyntax = true;
UsesELFSectionDirectiveForBSS = true;
if (TheTriple.getOS() == llvm::Triple::Solaris)
if (TheTriple.getOS() == llvm::Triple::Solaris ||
TheTriple.getOS() == llvm::Triple::OpenBSD)
UseIntegratedAssembler = true;
}