From: Nico Weber Date: Tue, 29 Apr 2014 01:25:49 +0000 (+0000) Subject: Revert r207482; I fail at reading IRC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e68bfe365a46d54625ad68b8d3a5e78354d41872;p=clang Revert r207482; I fail at reading IRC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@207483 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Headers/stddef.h b/lib/Headers/stddef.h index 9c90fea4de..97126ed152 100644 --- a/lib/Headers/stddef.h +++ b/lib/Headers/stddef.h @@ -76,7 +76,6 @@ typedef __WCHAR_TYPE__ wchar_t; #else # define NULL ((void*)0) #endif -#undef __need_NULL #ifdef __cplusplus #if defined(_MSC_EXTENSIONS) && defined(_NATIVE_NULLPTR_SUPPORTED) @@ -103,21 +102,6 @@ typedef double max_align_t; #endif /* __STDDEF_H */ -/* Some C libraries set __need_NULL and expects NULL to be defined again. */ -#if defined(__need_NULL) -#undef NULL -#ifdef __cplusplus -# if !defined(__MINGW32__) && !defined(_MSC_VER) -# define NULL __null -# else -# define NULL 0 -# endif -#else -# define NULL ((void*)0) -#endif -#undef __need_NULL -#endif - /* Some C libraries expect to see a wint_t here. Others (notably MinGW) will use __WINT_TYPE__ directly; accommodate both by requiring __need_wint_t */ #if defined(__need_wint_t) diff --git a/test/Headers/needsnull.cpp b/test/Headers/needsnull.cpp deleted file mode 100644 index 267cb5ddc3..0000000000 --- a/test/Headers/needsnull.cpp +++ /dev/null @@ -1,20 +0,0 @@ -// RUN: %clang_cc1 -fsyntax-only -triple i386-linux-gnu -verify -Wsentinel %s -// expected-no-diagnostics - -#include - -// linux/stddef.h does something like this for cpp files: -#undef NULL -#define NULL 0 - -// glibc (and other) headers then define __need_NULL and rely on stddef.h -// to redefine NULL to the correct value again. -#define __need_NULL -#include - -// gtk headers then use __attribute__((sentinel)), which doesn't work if NULL -// is 0. -void f(const char* c, ...) __attribute__((sentinel)); -void g() { - f("", NULL); // Shouldn't warn. -}