mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
Disable .loc support on older darwin OSes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120747 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ee4854faf3
commit
9bc23ad614
@ -278,6 +278,18 @@ int main(int argc, char **argv) {
|
||||
|
||||
if (DisableDotLoc)
|
||||
Target.setMCUseLoc(false);
|
||||
if (TheTriple.getOS() == Triple::Darwin) {
|
||||
switch (TheTriple.getDarwinMajorNumber()) {
|
||||
case 7:
|
||||
case 8:
|
||||
case 9:
|
||||
// disable .loc support for older darwin OS.
|
||||
Target.setMCUseLoc(false);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// Figure out where we are going to send the output...
|
||||
OwningPtr<tool_output_file> Out
|
||||
|
Loading…
Reference in New Issue
Block a user