1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

llc: Fix a refacto, .loc support didn't work before 10.6.

llvm-svn: 129841
This commit is contained in:
Daniel Dunbar 2011-04-20 00:47:19 +00:00
parent c550ce0d48
commit 187b2237d2

View File

@ -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...