LLVM API Documentation

ARMFPUName.h
Go to the documentation of this file.
00001 //===-- ARMFPUName.h - List of the ARM FPU names ----------------*- C++ -*-===//
00002 //
00003 //                     The LLVM Compiler Infrastructure
00004 //
00005 // This file is distributed under the University of Illinois Open Source
00006 // License. See LICENSE.TXT for details.
00007 //
00008 //===----------------------------------------------------------------------===//
00009 
00010 #ifndef LLVM_LIB_TARGET_ARM_ARMFPUNAME_H
00011 #define LLVM_LIB_TARGET_ARM_ARMFPUNAME_H
00012 
00013 namespace llvm {
00014 namespace ARM {
00015 
00016 enum FPUKind {
00017   INVALID_FPU = 0
00018 
00019 #define ARM_FPU_NAME(NAME, ID) , ID
00020 #include "ARMFPUName.def"
00021 };
00022 
00023 } // namespace ARM
00024 } // namespace llvm
00025 
00026 #endif