Home | History | Annotate | Download | only in Preprocessor

Lines Matching full:clang

3 #pragma clang diagnostic pop // expected-warning{{pragma diagnostic pop could not pop, no matching push}}
5 #pragma clang diagnostic puhs // expected-warning {{pragma diagnostic expected 'error', 'warning', 'ignored', 'fatal', 'push', or 'pop'}}
9 #pragma clang diagnostic push
10 #pragma clang diagnostic ignored "-Wmultichar"
13 #pragma clang diagnostic pop
17 #pragma clang diagnostic pop // expected-warning{{pragma diagnostic pop could not pop, no matching push}}
22 #pragma clang diagnostic push // now push
24 #pragma clang diagnostic warning "-Weverything"
27 #pragma clang diagnostic push // push again
28 #pragma clang diagnostic ignored "-Weverything" // Set to ignore in this level.
30 #pragma clang diagnostic warning "-Weverything" // Set to warning in this level.
32 #pragma clang diagnostic error "-Weverything" // Set to error in this level.
34 #pragma clang diagnostic pop // pop should go back to warning level
39 #pragma clang diagnostic pop // Another pop should disble it again