diff options
author | Quentin Colombet <qcolombet@apple.com> | 2013-01-14 21:07:43 +0000 |
---|---|---|
committer | Quentin Colombet <qcolombet@apple.com> | 2013-01-14 21:07:43 +0000 |
commit | 398db9368d72d1d60d40b2e18c16ca2c14aa7f39 (patch) | |
tree | 3d452e6c5f86e92e55a088bfe3ff53e23ada27a4 /include/llvm/Object/MachOFormat.h | |
parent | b398cae1e501069c48456a4bfdf8bbf549aa9746 (diff) |
Complete the existing support of ARM v6m, v7m, and v7em, i.e., respectively cortex-m0, cortex-m3, and cortex-m4 on the backend side.
Adds new subtype values for the MachO format and use them when the related triple are set.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172472 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Object/MachOFormat.h')
-rw-r--r-- | include/llvm/Object/MachOFormat.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/llvm/Object/MachOFormat.h b/include/llvm/Object/MachOFormat.h index a17d58dae2..001cb6540a 100644 --- a/include/llvm/Object/MachOFormat.h +++ b/include/llvm/Object/MachOFormat.h @@ -64,7 +64,10 @@ namespace mach { CSARM_V7 = 9, CSARM_V7F = 10, CSARM_V7S = 11, - CSARM_V7K = 12 + CSARM_V7K = 12, + CSARM_V6M = 14, + CSARM_V7M = 15, + CSARM_V7EM = 16 }; /// \brief PowerPC Machine Subtypes. |