Home | History | Annotate | Download | only in Preprocessor

Lines Matching refs:BAR

6 #define BAR "2"
9 #pragma comment(linker," bar=" BAR)
24 __pragma(comment(linker," bar=" BAR))
52 #pragma include_alias(<bar.h>, "bar.h") // expected-warning {{angle-bracketed include <bar.h> cannot be aliased to double-quoted include "bar.h"}}
53 #pragma include_alias("foo.h", <bar.h>) // expected-warning {{double-quoted include "foo.h" cannot be aliased to angle-bracketed include <bar.h>}}
63 // It's expected that we can map "bar" and <bar> separately
66 // that we get the right bar.h, because the "bar.h" will undef test for us, where <bar.h> won't
67 #pragma include_alias(<bar.h>, <stdio.h>)
68 #pragma include_alias("bar.h", "pr2086.h") // This should #undef test
70 #include "bar.h"