From 558692fd0a31d4d3ae4fd09a3a02f80da2e44e5c Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Wed, 20 Apr 2011 00:14:25 +0000 Subject: ADT/Triple: Renambe isOSX... methods to isMacOSX for consistency with the OS triple component. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129838 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llc/llc.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tools/llc') diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp index 99d43c8daf..2ff8794599 100644 --- a/tools/llc/llc.cpp +++ b/tools/llc/llc.cpp @@ -280,7 +280,8 @@ int main(int argc, char **argv) { Target.setMCUseLoc(false); // Disable .loc support for older OS X versions. - if (TheTriple.isOSX() && TheTriple.isOSXVersionLT(10, 5)) + if (TheTriple.isMacOSX() && + TheTriple.isMacOSXVersionLT(10, 5)) Target.setMCUseLoc(false); // Figure out where we are going to send the output... -- cgit v1.2.3