Revert c1fddb9, 639cfa4: "Codechange: Check if access __attribute__ is supported before trying to use it." (#8526)

This reverts commit c1fddb9a6a and 639cfa43d2.

access_mode "none" is only supported by GCC11, but introduced
after it branched. So there are GCC11.0s out there that do not
support it. We will have to wait for GCC11.1 to hit before we
can re-add this.
This commit is contained in:
Patric Stout
2021-01-08 15:25:44 +01:00
committed by GitHub
parent 4059ccf863
commit fda1fbf61c
2 changed files with 8 additions and 18 deletions

View File

@@ -137,16 +137,6 @@
# endif
#endif /* __GNUC__ || __clang__ */
#if defined __has_attribute
# if __has_attribute (access)
# define NOACCESS(args) __attribute__ ((access (none, args)))
# else
# define NOACCESS(args)
# endif
#else
# define NOACCESS(args)
#endif
#if defined(__WATCOMC__)
# define NORETURN
# define CDECL