forked from OSchip/llvm-project
nullptr printing - update for a change to clang type printing that now uses "std::nullptr_t"
This commit is contained in:
parent
9149ae09bd
commit
40e971a210
|
@ -210,9 +210,9 @@ auto null = &nullary;
|
||||||
// FIXME: These currently don't work because clang-cl emits incorrect debug info
|
// FIXME: These currently don't work because clang-cl emits incorrect debug info
|
||||||
// for std::nullptr_t. We should fix these in clang-cl.
|
// for std::nullptr_t. We should fix these in clang-cl.
|
||||||
auto rae = &unaryret<decltype(nullptr), 29>;
|
auto rae = &unaryret<decltype(nullptr), 29>;
|
||||||
// CHECK: (nullptr_t (*)()) rae = {{.*}}
|
// CHECK: (std::nullptr_t (*)()) rae = {{.*}}
|
||||||
auto aae = &unary<decltype(nullptr)>;
|
auto aae = &unary<decltype(nullptr)>;
|
||||||
// CHECK: (void (*)(nullptr_t)) aae = {{.*}}
|
// CHECK: (void (*)(std::nullptr_t)) aae = {{.*}}
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue