Logan Chien | 8cbb80d | 2013-10-28 17:51:12 +0000 | [diff] [blame] | 1 | //===-- ARMFPUName.h - List of the ARM FPU 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 | |
| 10 | #ifndef ARMFPUNAME_H |
| 11 | #define ARMFPUNAME_H |
| 12 | |
| 13 | namespace llvm { |
| 14 | namespace ARM { |
| 15 | |
| 16 | enum FPUKind { |
| 17 | INVALID_FPU = 0 |
| 18 | |
| 19 | #define ARM_FPU_NAME(NAME, ID) , ID |
| 20 | #include "ARMFPUName.def" |
| 21 | }; |
| 22 | |
| 23 | } // namespace ARM |
| 24 | } // namespace llvm |
| 25 | |
| 26 | #endif // ARMFPUNAME_H |