blob: f4960bf75a14f662f562d18a0ffb181c0f58af56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//TEST:SIMPLE(filecheck=CHECK):
// #ifdef support
int64_t GetValue();
void f()
{
int i;
#pragma warning (disable : 30081 15205)
// CHECK-NOT: ([[# @LINE+1]]): warning 30081:
i = GetValue();
// CHECK-NOT: ([[# @LINE+1]]): warning 15205:
#if MY_MACRO
#endif
}
// Test a warning specifier on two ids
|