summaryrefslogtreecommitdiffstats
path: root/clang/lib/Frontend/PCHReader.cpp
diff options
context:
space:
mode:
authorAlexis Hunt <alercah@gmail.com>2009-11-29 07:34:05 +0000
committerAlexis Hunt <alercah@gmail.com>2009-11-29 07:34:05 +0000
commit3d221f2fcea813daac37f5d204e11efde7878f70 (patch)
tree15df9f38113a1fcebbd944f39ca2d1c317019115 /clang/lib/Frontend/PCHReader.cpp
parenta1b02a2380242f72db833763db64060ef117f471 (diff)
downloadbcm5719-llvm-3d221f2fcea813daac37f5d204e11efde7878f70.tar.gz
bcm5719-llvm-3d221f2fcea813daac37f5d204e11efde7878f70.zip
Add DeclarationName support for C++0x operator literals. They should now work as
function names outside of templates - they'll probably cause some damage there as they're largely untested. llvm-svn: 90064
Diffstat (limited to 'clang/lib/Frontend/PCHReader.cpp')
-rw-r--r--clang/lib/Frontend/PCHReader.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/Frontend/PCHReader.cpp b/clang/lib/Frontend/PCHReader.cpp
index ec9834894fb..cb96bcb48ae 100644
--- a/clang/lib/Frontend/PCHReader.cpp
+++ b/clang/lib/Frontend/PCHReader.cpp
@@ -2589,6 +2589,10 @@ PCHReader::ReadDeclarationName(const RecordData &Record, unsigned &Idx) {
return Context->DeclarationNames.getCXXOperatorName(
(OverloadedOperatorKind)Record[Idx++]);
+ case DeclarationName::CXXLiteralOperatorName:
+ return Context->DeclarationNames.getCXXLiteralOperatorName(
+ GetIdentifierInfo(Record, Idx));
+
case DeclarationName::CXXUsingDirective:
return DeclarationName::getUsingDirectiveName();
}
OpenPOWER on IntegriCloud