[llvm] 26c293c - [BinaryFormat/MachO] Add a missing constant.
Davide Italiano via llvm-commits
llvm-commits at lists.llvm.org
Mon Sep 14 22:31:02 PDT 2020
Author: Davide Italiano
Date: 2020-09-14T22:30:54-07:00
New Revision: 26c293c23d3b5cf4135fce0b1e61b70d6c4dd930
URL: https://github.com/llvm/llvm-project/commit/26c293c23d3b5cf4135fce0b1e61b70d6c4dd930
DIFF: https://github.com/llvm/llvm-project/commit/26c293c23d3b5cf4135fce0b1e61b70d6c4dd930.diff
LOG: [BinaryFormat/MachO] Add a missing constant.
Reference:
https://opensource.apple.com/source/cctools/cctools-949.0.1/include/mach-o/loader.h.auto.html
Added:
Modified:
llvm/include/llvm/BinaryFormat/MachO.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/BinaryFormat/MachO.h b/llvm/include/llvm/BinaryFormat/MachO.h
index e84ed8b643cb..f5d5ec328b5e 100644
--- a/llvm/include/llvm/BinaryFormat/MachO.h
+++ b/llvm/include/llvm/BinaryFormat/MachO.h
@@ -83,6 +83,7 @@ enum {
MH_NO_HEAP_EXECUTION = 0x01000000u,
MH_APP_EXTENSION_SAFE = 0x02000000u,
MH_NLIST_OUTOFSYNC_WITH_DYLDINFO = 0x04000000u,
+ MH_SIM_SUPPORT = 0x08000000u,
MH_DYLIB_IN_CACHE = 0x80000000u,
};
More information about the llvm-commits
mailing list