]> granicus.if.org Git - clang/commit
Convert IdentifierInfo's to be printed the same as DeclarationNames
authorChris Lattner <sabre@nondot.org>
Sun, 23 Nov 2008 21:45:46 +0000 (21:45 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 23 Nov 2008 21:45:46 +0000 (21:45 +0000)
commit08631c5fa053867146b5ee8be658c229f6bf127c
treee1938ec851a8ca72ade476e71a10797fdacd12a7
parent011bb4edf731d529da1cbf71c7c2696aaf5a054f
Convert IdentifierInfo's to be printed the same as DeclarationNames
with implicit quotes around them.  This has a bunch of follow-on
effects and requires tweaking to a whole lot of code.  This causes
a regression in two tests (xfailed) by causing it to emit things like:

  Line 10: duplicate interface declaration for category 'MyClass1' ('Category1')

instead of:

  Line 10: duplicate interface declaration for category 'MyClass1(Category1)'

I will fix this in a follow-up commit.

As part of this, I had to start switching stuff to use ->getDeclName() instead
of Decl::getName() for consistency.  This is good, but I was planning to do this
as an independent patch.  There will be several follow-on patches
to clean up some of the mess, but this patch is already too big.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59917 91177308-0d34-0410-b5e6-96231b3b80d8
19 files changed:
include/clang/Basic/DiagnosticKinds.def
lib/Basic/Diagnostic.cpp
lib/Lex/PPDirectives.cpp
lib/Parse/ParseDecl.cpp
lib/Parse/ParseExpr.cpp
lib/Parse/ParsePragma.cpp
lib/Sema/SemaChecking.cpp
lib/Sema/SemaDecl.cpp
lib/Sema/SemaDeclAttr.cpp
lib/Sema/SemaDeclCXX.cpp
lib/Sema/SemaDeclObjC.cpp
lib/Sema/SemaExpr.cpp
lib/Sema/SemaExprObjC.cpp
lib/Sema/SemaStmt.cpp
test/Parser/pragma-pack.c
test/SemaCXX/references.cpp
test/SemaObjC/category-1.m
test/SemaObjC/check-dup-objc-decls-1.m
test/SemaObjC/conflicting-ivar-test-1.m