OpenASIP  2.0
CompilerWarnings.hh
Go to the documentation of this file.
1 /*
2  Copyright (c) 2015 Tampere University.
3 
4  This file is part of TTA-Based Codesign Environment (TCE).
5 
6  Permission is hereby granted, free of charge, to any person obtaining a
7  copy of this software and associated documentation files (the "Software"),
8  to deal in the Software without restriction, including without limitation
9  the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  and/or sell copies of the Software, and to permit persons to whom the
11  Software is furnished to do so, subject to the following conditions:
12 
13  The above copyright notice and this permission notice shall be included in
14  all copies or substantial portions of the Software.
15 
16  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19  THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  DEALINGS IN THE SOFTWARE.
23  */
24 /**
25  * @file CompilerWarnings.hh
26  *
27  * Macros to control compiler warnings.
28  *
29  * @author Pekka Jääskeläinen 2015
30  */
31 
32 #ifndef TCE_COMPILER_WARNINGS_HH
33 #define TCE_COMPILER_WARNINGS_HH
34 
35 #define DO_PRAGMA(x) _Pragma(#x)
36 
37 #ifdef __clang__
38 
39 #define IGNORE_COMPILER_WARNING(X) \
40  DO_PRAGMA(clang diagnostic push) \
41  DO_PRAGMA(clang diagnostic ignored X)
42 
43 #elif defined(__GNUC__)
44 
45 #define IGNORE_COMPILER_WARNING(X) \
46  DO_PRAGMA(GCC diagnostic push) \
47  DO_PRAGMA(GCC diagnostic ignored X)
48 
49 #else
50 
51 #define IGNORE_COMPILER_WARNING(X)
52 
53 #endif
54 
55 
56 #ifdef __clang__
57 
58 #define POP_COMPILER_DIAGS \
59  DO_PRAGMA(clang diagnostic pop)
60 
61 #elif defined(__GNUC__)
62 
63 #define POP_COMPILER_DIAGS \
64  DO_PRAGMA(GCC diagnostic pop)
65 
66 #else
67 
68 #define POP_COMPILER_DIAGS
69 
70 #endif
71 
72 // Macro to suppress warnings for clang only. In some cases the
73 // IGNORE_COMPILER_WARNING is not preferred for both the GCC and clang. For
74 // example, clang has own warning enabled with -Wall/-Wextra or warning option
75 // differs slightly (-Wunused-local-typedef vs -Wunused-local-typedefs).
76 // Use POP_CLANG_DIAGS to remove the diagnostic.
77 #ifdef __clang__
78 
79 #define IGNORE_CLANG_WARNING(X) \
80  DO_PRAGMA(clang diagnostic push) \
81  DO_PRAGMA(clang diagnostic ignored X)
82 
83 #else
84 
85 #define IGNORE_CLANG_WARNING(X)
86 
87 #endif
88 
89 #ifdef __clang__
90 
91 #define POP_CLANG_DIAGS \
92  DO_PRAGMA(clang diagnostic pop)
93 
94 #else
95 
96 #define POP_CLANG_DIAGS
97 
98 #endif
99 
100 #endif
101