Logan Chien | 439e8f9 | 2013-12-11 17:16:25 +0000 | [diff] [blame] | 1 | //===-- ARMArchName.h - List of the ARM arch names --------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 10 | #ifndef LLVM_LIB_TARGET_ARM_MCTARGETDESC_ARMARCHNAME_H |
| 11 | #define LLVM_LIB_TARGET_ARM_MCTARGETDESC_ARMARCHNAME_H |
Logan Chien | 439e8f9 | 2013-12-11 17:16:25 +0000 | [diff] [blame] | 12 | |
| 13 | namespace llvm { |
| 14 | namespace ARM { |
| 15 | |
| 16 | enum ArchKind { |
| 17 | INVALID_ARCH = 0 |
| 18 | |
| 19 | #define ARM_ARCH_NAME(NAME, ID, DEFAULT_CPU_NAME, DEFAULT_CPU_ARCH) , ID |
Joerg Sonnenberger | a13f8b4 | 2013-12-26 11:50:28 +0000 | [diff] [blame] | 20 | #define ARM_ARCH_ALIAS(NAME, ID) /* empty */ |
Logan Chien | 439e8f9 | 2013-12-11 17:16:25 +0000 | [diff] [blame] | 21 | #include "ARMArchName.def" |
| 22 | }; |
| 23 | |
| 24 | } // namespace ARM |
| 25 | } // namespace llvm |
| 26 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 27 | #endif |