aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/cxxsupp/openmp/thirdparty/ittnotify/disable_warnings.h
blob: 50ccc374d99853143fd4e8927f311baf57ab313c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 
//===----------------------------------------------------------------------===// 
// 
//                     The LLVM Compiler Infrastructure 
// 
// This file is dual licensed under the MIT and the University of Illinois Open 
// Source Licenses. See LICENSE.txt for details. 
// 
//===----------------------------------------------------------------------===// 
 
#include "ittnotify_config.h" 
 
#if ITT_PLATFORM==ITT_PLATFORM_WIN 
 
#pragma warning (disable: 593)   /* parameter "XXXX" was set but never used                 */ 
#pragma warning (disable: 344)   /* typedef name has already been declared (with same type) */ 
#pragma warning (disable: 174)   /* expression has no effect                                */ 
#pragma warning (disable: 4127)  /* conditional expression is constant                      */ 
#pragma warning (disable: 4306)  /* conversion from '?' to '?' of greater size              */ 
 
#endif /* ITT_PLATFORM==ITT_PLATFORM_WIN */ 
 
#if defined __INTEL_COMPILER 
 
#pragma warning (disable: 869)  /* parameter "XXXXX" was never referenced                  */ 
#pragma warning (disable: 1418) /* external function definition with no prior declaration  */ 
#pragma warning (disable: 1419) /* external declaration in primary source file             */ 
 
#endif /* __INTEL_COMPILER */