mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-04-16 05:10:32 +00:00

Found via codespell -q 3 -I ../clang-whitelist.txt Where whitelist consists of: archtype cas classs checkk compres definit frome iff inteval ith lod methode nd optin ot pres statics te thru Patch by luzpaz! (This is a subset of D44188 that applies cleanly with a few files that have dubious fixes reverted.) Differential revision: https://reviews.llvm.org/D44188 llvm-svn: 329399
17 lines
586 B
C++
17 lines
586 B
C++
// RUN: %clang_cc1 -fsyntax-only -triple i686-pc-win32 -fms-compatibility -fms-compatibility-version=17.00 %s
|
|
// RUN: %clang_cc1 -fsyntax-only -triple i386-mingw32 %s
|
|
|
|
// Something in MSVC's headers (pulled in e.g. by <crtdefs.h>) defines __null
|
|
// to something, mimic that.
|
|
#define __null
|
|
|
|
#include <stddef.h>
|
|
|
|
// __null is used as a type annotation in MS headers, with __null defined to
|
|
// nothing in regular builds. This should continue to work even with stddef.h
|
|
// included.
|
|
void f(__null void* p) { }
|
|
|
|
// NULL should work fine even with __null defined to nothing.
|
|
void* p = NULL;
|