diff options
author | Chris Lattner <sabre@nondot.org> | 2009-06-30 01:26:17 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-06-30 01:26:17 +0000 |
commit | e4f2142d00fa5fdb580c4e2413da91882d955381 (patch) | |
tree | cf2362c9a9e3df03e7e52fe620d2e83a7b66094d /tools/index-test/index-test.cpp | |
parent | 16dbdce02366c372fe934c0528148fc38906f21a (diff) |
Key decisions about 'bool' vs '_Bool' to be based on a new flag in langoptions.
This is simple enough, but then I thought it would be nice to make PrintingPolicy
get a LangOptions so that various things can key off "bool" and "C++" independently.
This spiraled out of control. There are many fixme's, but I think things are slightly
better than they were before.
One thing that can be improved: CFG should probably have an ASTContext pointer in it,
which would simplify its clients.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@74493 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/index-test/index-test.cpp')
-rw-r--r-- | tools/index-test/index-test.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/index-test/index-test.cpp b/tools/index-test/index-test.cpp index d851f5c90b..9b10c55bde 100644 --- a/tools/index-test/index-test.cpp +++ b/tools/index-test/index-test.cpp @@ -133,7 +133,8 @@ int main(int argc, char **argv) { if (Point.Node) { OS << "Statement node at point: " << Point.Node->getStmtClassName() << " "; - Point.Node->printPretty(OS, AST->getASTContext()); + Point.Node->printPretty(OS, AST->getASTContext(), 0, + PrintingPolicy(AST->getASTContext().getLangOptions())); OS << "\n"; } } |