[RISCV] Add RVVConstraint to SiFive custom matrix multiply instructions. (#124055)
[llvm-project.git] / libcxx / test / std / depr / depr.c.headers / stddef_h.nullptr.pass.cpp
blob52cd7e66f99f9ec23bfda26c65df5c1e35eb13ba
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // <stddef.h>
11 #include <stddef.h>
12 #include <cassert>
14 int main(int, char**) {
16 void *p = NULL;
17 assert(!p);
20 void *p = nullptr;
21 assert(!p);
24 return 0;