This website requires JavaScript.
Explore
Help
Sign In
maxjhandsome
/
llvm-project
forked from
OSchip/llvm-project
Watch
1
Star
0
Fork
You've already forked llvm-project
0
Code
Issues
Pull Requests
Packages
Releases
Wiki
Activity
a2ee80b084
llvm-project
/
clang
/
test
/
Misc
/
Inputs
/
include.h
4 lines
57 B
C
Raw
Normal View
History
Unescape
Escape
Change the include stack of "instantiated from" notes to fall under the control of f/fno-diagnostics-show-note-include-stack flags. This should help with reducing diagnostic spew from macros instantiations. llvm-svn: 132143
2011-05-27 04:49:16 +08:00
#
define EQUALS(a,b) a == b
Flip the default for showing include stacks on notes to false. This required modifying a few tests that specifically use note include stacks to check the source manager's view of include stacks. I've simply added the flag to these tests for now, they may have to be more substantially changed if we decide to remove support for note include stacks altogether. Also, add a test for include stacks on notes that was supposed to go in with the previous commit. llvm-svn: 128390
2011-03-28 04:00:08 +08:00
int
foo
(
int
x
)
{
return
x
;
}