diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-04-20 00:14:25 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-04-20 00:14:25 +0000 |
commit | cd01ed5bd6134c4dab5e7b7baccef326ca205712 (patch) | |
tree | 414c19294d27b222282b043efa9900819d5d8dd5 /llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp | |
parent | dc62e59776a887af1a5d39222bae57442626ec01 (diff) | |
download | bcm5719-llvm-cd01ed5bd6134c4dab5e7b7baccef326ca205712.tar.gz bcm5719-llvm-cd01ed5bd6134c4dab5e7b7baccef326ca205712.zip |
ADT/Triple: Renambe isOSX... methods to isMacOSX for consistency with the OS
triple component.
llvm-svn: 129838
Diffstat (limited to 'llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp')
-rw-r--r-- | llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp b/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp index 82c186e1c3f..7e63d60fa6d 100644 --- a/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp +++ b/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp @@ -481,7 +481,7 @@ void TargetLoweringObjectFileMachO::Initialize(MCContext &Ctx, // .comm doesn't support alignment before Leopard. Triple T(((LLVMTargetMachine&)TM).getTargetTriple()); - if (T.isOSX() && T.isOSXVersionLT(10, 5)) + if (T.isMacOSX() && T.isMacOSXVersionLT(10, 5)) CommDirectiveSupportsAlignment = false; TargetLoweringObjectFile::Initialize(Ctx, TM); |