diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-04-19 21:43:27 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-04-19 21:43:27 +0000 |
commit | 14ad22f09d419419722a6caad5020fdc0712a894 (patch) | |
tree | 44bcca3ad68328b3d5b5e4f3e2586f16d12f0b36 /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | 2b059998f7a6ce18dadd8d11b396825d79cdd27a (diff) | |
download | bcm5719-llvm-14ad22f09d419419722a6caad5020fdc0712a894.tar.gz bcm5719-llvm-14ad22f09d419419722a6caad5020fdc0712a894.zip |
ADT/Triple: Switch to using .isOSDarwin() predicate.
llvm-svn: 129823
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index 440fb47295c..39faee74bcf 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -150,7 +150,7 @@ void CodeGenModule::DecorateInstruction(llvm::Instruction *Inst, } bool CodeGenModule::isTargetDarwin() const { - return getContext().Target.getTriple().getOS() == llvm::Triple::Darwin; + return getContext().Target.getTriple().isOSDarwin(); } void CodeGenModule::Error(SourceLocation loc, llvm::StringRef error) { |