More standard way of specifying greater than Leopard.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75488 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/X86/X86TargetAsmInfo.cpp b/lib/Target/X86/X86TargetAsmInfo.cpp
index 244d2f1..70dafae 100644
--- a/lib/Target/X86/X86TargetAsmInfo.cpp
+++ b/lib/Target/X86/X86TargetAsmInfo.cpp
@@ -96,10 +96,10 @@
// Leopard and earlier put exception tables in __DATA. Greater than Leopard
// put them in __TEXT.
- if (Subtarget->getDarwinVers() < 10)
- DwarfExceptionSection = ".section __DATA,__gcc_except_tab";
- else
+ if (Subtarget->getDarwinVers() > 9)
DwarfExceptionSection = ".section __TEXT,__gcc_except_tab";
+ else
+ DwarfExceptionSection = ".section __DATA,__gcc_except_tab";
}
unsigned