clang 19.0.0git
PragmaKinds.h
Go to the documentation of this file.
1//===--- PragmaKinds.h - #pragma comment() kinds ---------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_CLANG_BASIC_PRAGMAKINDS_H
10#define LLVM_CLANG_BASIC_PRAGMAKINDS_H
11
12namespace clang {
13
16 PCK_Linker, // #pragma comment(linker, ...)
17 PCK_Lib, // #pragma comment(lib, ...)
18 PCK_Compiler, // #pragma comment(compiler, ...)
19 PCK_ExeStr, // #pragma comment(exestr, ...)
20 PCK_User // #pragma comment(user, ...)
21};
22
24 PMSST_OFF, // #pragms ms_struct off
25 PMSST_ON // #pragms ms_struct on
26};
27
30 PFC_Precise, // #pragma float_control(precise, [,on])
31 PFC_NoPrecise, // #pragma float_control(precise, off)
32 PFC_Except, // #pragma float_control(except [,on])
33 PFC_NoExcept, // #pragma float_control(except, off)
34 PFC_Push, // #pragma float_control(push)
35 PFC_Pop // #pragma float_control(pop)
36};
37
39 PFK_Contract, // #pragma clang fp contract
40 PFK_Reassociate, // #pragma clang fp reassociate
41 PFK_Reciprocal, // #pragma clang fp reciprocal
42 PFK_Exceptions, // #pragma clang fp exceptions
43 PFK_EvalMethod // #pragma clang fp eval_method
44};
45}
46
47#endif
The JSON file list parser is used to communicate input to InstallAPI.
PragmaFPKind
Definition: PragmaKinds.h:38
@ PFK_Reassociate
Definition: PragmaKinds.h:40
@ PFK_EvalMethod
Definition: PragmaKinds.h:43
@ PFK_Exceptions
Definition: PragmaKinds.h:42
@ PFK_Reciprocal
Definition: PragmaKinds.h:41
@ PFK_Contract
Definition: PragmaKinds.h:39
PragmaMSCommentKind
Definition: PragmaKinds.h:14
@ PCK_ExeStr
Definition: PragmaKinds.h:19
@ PCK_Compiler
Definition: PragmaKinds.h:18
@ PCK_Linker
Definition: PragmaKinds.h:16
@ PCK_Lib
Definition: PragmaKinds.h:17
@ PCK_Unknown
Definition: PragmaKinds.h:15
@ PCK_User
Definition: PragmaKinds.h:20
PragmaMSStructKind
Definition: PragmaKinds.h:23
@ PMSST_ON
Definition: PragmaKinds.h:25
@ PMSST_OFF
Definition: PragmaKinds.h:24
PragmaFloatControlKind
Definition: PragmaKinds.h:28
@ PFC_NoExcept
Definition: PragmaKinds.h:33
@ PFC_NoPrecise
Definition: PragmaKinds.h:31
@ PFC_Pop
Definition: PragmaKinds.h:35
@ PFC_Precise
Definition: PragmaKinds.h:30
@ PFC_Unknown
Definition: PragmaKinds.h:29
@ PFC_Except
Definition: PragmaKinds.h:32
@ PFC_Push
Definition: PragmaKinds.h:34