From 35de9946d5fc01d2fed970bdcc7966bad92bdbc4 Mon Sep 17 00:00:00 2001 From: Jim Grosbach Date: Sat, 16 Nov 2013 00:52:57 +0000 Subject: X86: Encode the 'h' cpu subtype in the MachO header for x86. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194906 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/MachO.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/llvm/Support/MachO.h b/include/llvm/Support/MachO.h index dcf9e42..897a611 100644 --- a/include/llvm/Support/MachO.h +++ b/include/llvm/Support/MachO.h @@ -948,7 +948,8 @@ namespace llvm { CPU_SUBTYPE_X86_ALL = 3, CPU_SUBTYPE_X86_64_ALL = 3, - CPU_SUBTYPE_X86_ARCH1 = 4 + CPU_SUBTYPE_X86_ARCH1 = 4, + CPU_SUBTYPE_X86_64_H = 8 }; static inline int CPU_SUBTYPE_INTEL(int Family, int Model) { return Family | (Model << 4); -- cgit v1.1