Skip to content

Commit

Permalink
llc: Fix a refacto, .loc support didn't work before 10.6.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129841 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
ddunbar committed Apr 20, 2011
1 parent 863f846 commit 0ccc0dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/llc/llc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ int main(int argc, char **argv) {

// Disable .loc support for older OS X versions.
if (TheTriple.isMacOSX() &&
TheTriple.isMacOSXVersionLT(10, 5))
TheTriple.isMacOSXVersionLT(10, 6))
Target.setMCUseLoc(false);

// Figure out where we are going to send the output...
Expand Down

0 comments on commit 0ccc0dd

Please sign in to comment.