2000-08-02 00:09:25 +00:00
|
|
|
/* Test program for the gcc interface.
|
2021-01-02 19:32:25 +00:00
|
|
|
Copyright (C) 2000-2021 Free Software Foundation, Inc.
|
2000-08-02 00:09:25 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Ulrich Drepper <drepper@cygnus.com>.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
2000-08-02 00:09:25 +00:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
2000-08-02 00:09:25 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2000-08-02 00:09:25 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#define __no_type_class -1
|
|
|
|
#define __void_type_class 0
|
|
|
|
#define __integer_type_class 1
|
|
|
|
#define __char_type_class 2
|
|
|
|
#define __enumeral_type_class 3
|
|
|
|
#define __boolean_type_class 4
|
|
|
|
#define __pointer_type_class 5
|
|
|
|
#define __reference_type_class 6
|
|
|
|
#define __offset_type_class 7
|
|
|
|
#define __real_type_class 8
|
|
|
|
#define __complex_type_class 9
|
|
|
|
#define __function_type_class 10
|
|
|
|
#define __method_type_class 11
|
|
|
|
#define __record_type_class 12
|
|
|
|
#define __union_type_class 13
|
|
|
|
#define __array_type_class 14
|
|
|
|
#define __string_type_class 15
|
|
|
|
#define __set_type_class 16
|
|
|
|
#define __file_type_class 17
|
|
|
|
#define __lang_type_class 18
|
|
|
|
|
|
|
|
|
|
|
|
#define TEST(var) \
|
|
|
|
({ int wrong = (__builtin_classify_type (__##var##_type) \
|
|
|
|
!= __##var##_type_class); \
|
|
|
|
printf ("%-15s is %d: %s\n", \
|
|
|
|
#var, __builtin_classify_type (__##var##_type), \
|
|
|
|
wrong ? "WRONG" : "OK"); \
|
|
|
|
wrong; \
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2014-11-05 09:54:08 +00:00
|
|
|
static int
|
|
|
|
do_test (void)
|
2000-08-02 00:09:25 +00:00
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
int __integer_type;
|
|
|
|
void *__pointer_type;
|
|
|
|
double __real_type;
|
|
|
|
__complex__ double __complex_type;
|
|
|
|
struct { int a; } __record_type;
|
|
|
|
union { int a; int b; } __union_type;
|
|
|
|
|
|
|
|
result |= TEST (integer);
|
|
|
|
result |= TEST (pointer);
|
|
|
|
result |= TEST (real);
|
|
|
|
result |= TEST (complex);
|
|
|
|
result |= TEST (record);
|
|
|
|
result |= TEST (union);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2014-11-05 09:54:08 +00:00
|
|
|
|
|
|
|
#define TEST_FUNCTION do_test ()
|
|
|
|
#include "../test-skeleton.c"
|