[PATCH] D54862: [OpenCL] Add generic AS to 'this' pointer
Mikael Nilsson via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Dec 12 07:06:07 PST 2018
mikael added a comment.
Seems like my this commit broke: http://lab.llvm.org:8011/builders/lldb-x86_64-ubuntu-14.04-buildserver/builds/33176
But since I don't really know what anything about lldb, I probably won't be able to fix it fast enough.
/lldb-buildbot/buildServerSlave/lldb-android-buildserver/llvm/tools/lldb/source/Symbol/ClangASTContext.cpp:2208:24: error: no viable overloaded '='
proto_info.TypeQuals = type_quals;
~~~~~~~~~~~~~~~~~~~~ ^ ~~~~~~~~~~
/lldb-buildbot/buildServerSlave/lldb-android-buildserver/llvm/tools/clang/include/clang/AST/Type.h:141:7: note: candidate function (the implicit copy assignment operator) not viable: no known conversion from 'unsigned int' to 'const clang::Qualifiers' for 1st argument
class Qualifiers {
^
/lldb-buildbot/buildServerSlave/lldb-android-buildserver/llvm/tools/clang/include/clang/AST/Type.h:141:7: note: candidate function (the implicit move assignment operator) not viable: no known conversion from 'unsigned int' to 'clang::Qualifiers' for 1st argument
1 error generated.
I think it can be easily solved by Qualifiers::fromFastMask(type_quals); also updating the variable name since it changed.
But I know nothing about lldb, so I better revert this patch for now.
Repository:
rC Clang
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D54862/new/
https://reviews.llvm.org/D54862
More information about the cfe-commits
mailing list