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/CGException.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/CGException.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGException.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGException.cpp b/clang/lib/CodeGen/CGException.cpp index ac5fc221f41..614b42c769b 100644 --- a/clang/lib/CodeGen/CGException.cpp +++ b/clang/lib/CodeGen/CGException.cpp @@ -266,7 +266,7 @@ static bool PersonalityHasOnlyCXXUses(llvm::Constant *Fn) { /// when it really needs it. void CodeGenModule::SimplifyPersonality() { // For now, this is really a Darwin-specific operation. - if (Context.Target.getTriple().getOS() != llvm::Triple::Darwin) + if (Context.Target.getTriple().isOSDarwin()) return; // If we're not in ObjC++ -fexceptions, there's nothing to do. |