repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git]
/
clang
/
test
/
Preprocessor
/
macro_expandloc.c
blob
3b9eb5fdddfd0a44c46c95cd222a460e8c068447
1
// RUN: %clang_cc1 -E -verify %s
2
#define FOO 1
3
4
// The error message should be on the #include line, not the 1.
5
6
// expected-error@+1 {{expected "FILENAME" or <FILENAME>}}
7
#include FOO
8
9
#define BAR BAZ
10
11
// expected-error@+1 {{expected "FILENAME" or <FILENAME>}}
12
#include BAR
13