forked from OSchip/llvm-project
Use the integrated assembler by default on OpenBSD.
llvm-svn: 212771
This commit is contained in:
parent
848560125d
commit
733cb6437d
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue