Skip to content

Instantly share code, notes, and snippets.

@ELLIOTTCABLE
Created May 9, 2011 03:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ELLIOTTCABLE/962027 to your computer and use it in GitHub Desktop.
Save ELLIOTTCABLE/962027 to your computer and use it in GitHub Desktop.
Building Racket @f60f234 on Mac OS X 10.7 (Lion) Developer Preview 3
This file has been truncated, but you can view the full file.
> git pull
remote: Counting objects: 266, done.
remote: Compressing objects: 100% (113/113), done.
remote: Total 195 (delta 143), reused 110 (delta 78)
Receiving objects: 100% (195/195), 268.04 KiB, done.
Resolving deltas: 100% (143/143), completed with 67 local objects.
From https://github.com/plt/racket
70b0eb8..f60f234 master -> origin/master
Updating 70b0eb8..f60f234
Fast-forward
collects/compiler/decompile.rkt | 3 +-
collects/racket/draw/private/dc.rkt | 46 +-
collects/redex/private/reduction-semantics.rkt | 23 +-
collects/redex/private/struct.rkt | 29 +-
collects/redex/redex.scrbl | 27 +-
collects/redex/reduction-semantics.rkt | 3 +-
collects/redex/tests/tl-test.rkt | 8 +
collects/scribble/lncs/lang.rkt | 107 +
collects/scribble/lncs/lang/reader.rkt | 3 +
collects/scribble/lncs/style.tex | 3 +
.../drracket/teaching-lang-sharing-modules.rkt | 48 +
collects/tests/racket/sandbox.rktl | 4 +-
.../typed-scheme/unit-tests/typecheck-tests.rkt | 16 +-
collects/typed-scheme/private/base-env.rkt | 2 +
collects/typed-scheme/private/base-special-env.rkt | 13 +
doc/release-notes/redex/HISTORY.txt | 6 +
src/racket/Makefile.in | 8 +-
src/racket/gc2/Makefile.in | 66 +-
src/racket/include/schthread.h | 9 +-
src/racket/src/Makefile.in | 112 +-
src/racket/src/compenv.c | 2475 ++++
src/racket/src/compile.c | 5454 ++++++++
src/racket/src/env.c | 3981 +-----
src/racket/src/eval.c |14750 +++++---------------
src/racket/src/fun.c | 1454 +--
src/racket/src/future.c | 3 +-
src/racket/src/hash.c | 3 +-
src/racket/src/jit.c | 3 +-
src/racket/src/jitprep.c | 648 +
src/racket/src/marshal.c | 1716 +++
src/racket/src/mkmark.rkt | 66 +-
src/racket/src/module.c | 1174 +--
src/racket/src/mzmark.c | 5953 --------
src/racket/src/mzmark_compenv.inc | 67 +
src/racket/src/mzmark_compile.inc | 2 +
src/racket/src/mzmark_env.inc | 2 +
src/racket/src/mzmark_eval.inc | 62 +
src/racket/src/mzmark_fun.inc | 161 +
src/racket/src/mzmark_future.inc | 164 +
src/racket/src/mzmark_hash.inc | 74 +
src/racket/src/mzmark_jit.inc | 173 +
src/racket/src/mzmark_network.inc | 126 +
src/racket/src/mzmark_optimize.inc | 72 +
src/racket/src/mzmark_place.inc | 87 +
src/racket/src/mzmark_port.inc | 232 +
src/racket/src/mzmark_portfun.inc | 154 +
src/racket/src/mzmark_print.inc | 86 +
src/racket/src/mzmark_read.inc | 190 +
src/racket/src/mzmark_regexp.inc | 71 +
src/racket/src/mzmark_resolve.inc | 47 +
src/racket/src/mzmark_salloc.inc | 68 +
src/racket/src/mzmark_sema.inc | 56 +
src/racket/src/mzmark_sfs.inc | 33 +
src/racket/src/mzmark_string.inc | 25 +
src/racket/src/mzmark_struct.inc | 297 +
src/racket/src/mzmark_syntax.inc | 221 +
src/racket/src/mzmark_thread.inc | 424 +
src/racket/src/mzmark_type.inc | 2893 ++++
src/racket/src/mzmark_validate.inc | 31 +
src/racket/src/mzmarksrc.c | 95 +-
src/racket/src/network.c | 3 +-
src/racket/src/optimize.c | 5859 ++++++++
src/racket/src/{places.c => place.c} | 3 +-
src/racket/src/port.c | 3 +-
src/racket/src/portfun.c | 3 +-
src/racket/src/print.c | 3 +-
src/racket/src/read.c | 3 +-
src/racket/src/regexp.c | 3 +-
src/racket/src/resolve.c | 2907 ++++
src/racket/src/salloc.c | 89 +-
src/racket/src/schpriv.h | 420 +-
src/racket/src/sema.c | 3 +-
src/racket/src/sfs.c | 1271 ++
src/racket/src/string.c | 3 +-
src/racket/src/struct.c | 3 +-
src/racket/src/stxobj.c | 9411 -------------
src/racket/src/syntax.c |13961 +++++++++++--------
src/racket/src/thread.c | 3 +-
src/racket/src/type.c | 3 +-
src/racket/src/validate.c | 1562 +++
src/worksp/gc2/make.rkt | 11 +-
src/worksp/libracket/libracket.vcproj | 36 +-
src/worksp10/libracket/libracket.vcxproj | 11 +-
83 files changed, 40107 insertions(+), 39596 deletions(-)
create mode 100644 collects/scribble/lncs/lang.rkt
create mode 100644 collects/scribble/lncs/lang/reader.rkt
create mode 100644 collects/scribble/lncs/lncs.tex
create mode 100644 collects/scribble/lncs/style.tex
create mode 100644 collects/tests/drracket/teaching-lang-sharing-modules.rkt
create mode 100644 src/racket/src/compenv.c
create mode 100644 src/racket/src/compile.c
create mode 100644 src/racket/src/jitprep.c
create mode 100644 src/racket/src/marshal.c
delete mode 100644 src/racket/src/mzmark.c
create mode 100644 src/racket/src/mzmark_compenv.inc
create mode 100644 src/racket/src/mzmark_compile.inc
create mode 100644 src/racket/src/mzmark_env.inc
create mode 100644 src/racket/src/mzmark_eval.inc
create mode 100644 src/racket/src/mzmark_fun.inc
create mode 100644 src/racket/src/mzmark_future.inc
create mode 100644 src/racket/src/mzmark_hash.inc
create mode 100644 src/racket/src/mzmark_jit.inc
create mode 100644 src/racket/src/mzmark_network.inc
create mode 100644 src/racket/src/mzmark_optimize.inc
create mode 100644 src/racket/src/mzmark_place.inc
create mode 100644 src/racket/src/mzmark_port.inc
create mode 100644 src/racket/src/mzmark_portfun.inc
create mode 100644 src/racket/src/mzmark_print.inc
create mode 100644 src/racket/src/mzmark_read.inc
create mode 100644 src/racket/src/mzmark_regexp.inc
create mode 100644 src/racket/src/mzmark_resolve.inc
create mode 100644 src/racket/src/mzmark_salloc.inc
create mode 100644 src/racket/src/mzmark_sema.inc
create mode 100644 src/racket/src/mzmark_sfs.inc
create mode 100644 src/racket/src/mzmark_string.inc
create mode 100644 src/racket/src/mzmark_struct.inc
create mode 100644 src/racket/src/mzmark_syntax.inc
create mode 100644 src/racket/src/mzmark_thread.inc
create mode 100644 src/racket/src/mzmark_type.inc
create mode 100644 src/racket/src/mzmark_validate.inc
create mode 100644 src/racket/src/optimize.c
rename src/racket/src/{places.c => place.c} (99%)
create mode 100644 src/racket/src/resolve.c
create mode 100644 src/racket/src/sfs.c
delete mode 100644 src/racket/src/stxobj.c
create mode 100644 src/racket/src/validate.c
> mkdir build
> rm -rf build
> mkdir src/build
> cd src/build
> cd srbu
cd: no such file or directory: srbu
> cd srbu
cd: no such file or directory: srbu
> ../configure
checking for gcc... clang
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether clang accepts -g... yes
checking for clang option to accept ISO C89... none needed
checking how to run the C preprocessor... clang -E
checking for ranlib... ranlib
checking for cos in -lm... yes
checking for dlopen in -ldl... yes
checking for inline keyword... yes
checking for noinline attribute... yes
checking for GNU preprocessor... yes
checking for nl_langinfo (CODESET)... yes
checking for getaddrinfo... yes
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking iconv.h usability... yes
checking iconv.h presence... yes
checking for iconv.h... yes
checking iconv is usable... yes -liconv
checking for mbsrtowcs... yes
checking for libffi... no
Building own libffi
checking for char... yes
checking size of char... 1
checking for short... yes
checking size of short... 2
checking for int... yes
checking size of int... 4
checking for long... yes
checking size of long... 8
checking for long long... yes
checking size of long long... 8
checking for void *... yes
checking size of void *... 8
checking for intptr_t... yes
checking for uintptr_t... yes
checking for stack direction... down
checking whether byte ordering is bigendian... no
checking whether pthread_rwlock is available... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating racket/Makefile
config.status: creating racket/src/Makefile
config.status: creating racket/dynsrc/Makefile
config.status: creating racket/gc/Makefile
config.status: creating racket/sgc/Makefile
config.status: creating racket/gc2/Makefile
config.status: creating foreign/Makefile
config.status: creating plot/Makefile
config.status: creating gracket/Makefile
config.status: creating gracket/gc2/Makefile
config.status: creating racket/mzconfig.h
=== configuring in foreign/libffi (/Users/elliottcable/Code/Sources/racket/src/build/foreign/libffi)
configure: running /bin/sh ../../../foreign/libffi/configure '--prefix=/Users/elliottcable/Code/Sources/racket' 'CC=clang' --cache-file=/dev/null --srcdir=../../../foreign/libffi
checking build system type... x86_64-apple-darwin11.0.0
checking host system type... x86_64-apple-darwin11.0.0
checking target system type... x86_64-apple-darwin11.0.0
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... ../../../foreign/libffi/install-sh -c -d
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking for gcc... clang
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether clang accepts -g... yes
checking for clang option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of clang... gcc3
checking dependency style of clang... gcc3
checking whether clang and cc understand -c and -o together... yes
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by clang... /usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld
checking if the linker (/usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld) is GNU ld... no
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm
checking the name lister (/usr/bin/nm) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 196608
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for /usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld option to reload object files... -r
checking for objdump... no
checking how to recognize dependent libraries... pass_all
checking for ar... ar
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm output from clang object... ok
checking for dsymutil... dsymutil
checking for nmedit... nmedit
checking for lipo... lipo
checking for otool... otool
checking for otool64... no
checking for -single_module linker flag... yes
checking for -exported_symbols_list linker flag... yes
checking how to run the C preprocessor... clang -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if clang supports -fno-rtti -fno-exceptions... yes
checking for clang option to produce PIC... -fno-common -DPIC
checking if clang PIC flag -fno-common -DPIC works... yes
checking if clang static flag -static works... no
checking if clang supports -c -o file.o... yes
checking if clang supports -c -o file.o... (cached) yes
checking whether the clang linker (/usr/libexec/gcc/i686-apple-darwin11/4.2.1/ld) supports shared libraries... yes
checking dynamic linker characteristics... darwin11.0.0 dyld
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking for mmap... yes
checking for sys/mman.h... (cached) yes
checking for mmap... (cached) yes
checking whether read-only mmap of a plain file works... yes
checking whether mmap from /dev/zero works... no
checking for MAP_ANON(YMOUS)... yes
checking whether mmap with MAP_ANON(YMOUS) works... yes
checking for ANSI C header files... (cached) yes
checking for memcpy... yes
checking for working alloca.h... yes
checking for alloca... yes
checking size of double... 8
checking size of long double... 16
checking whether byte ordering is bigendian... no
checking assembler .cfi pseudo-op support... yes
checking whether .eh_frame section should be read-only... no
checking for __attribute__((visibility("hidden")))... no
configure: creating ./config.status
config.status: creating include/Makefile
config.status: creating include/ffi.h
config.status: creating Makefile
config.status: creating testsuite/Makefile
config.status: creating man/Makefile
config.status: creating libffi.pc
config.status: creating fficonfig.h
config.status: linking ../../../foreign/libffi/src/x86/ffitarget.h to include/ffitarget.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing include commands
config.status: executing src commands
>>> Installation is in-place:
../..
Configure with --prefix if you wanted to install somewhere else.
Alternately, you can simply `mv' the in-place installation after
running `make install'.
> make
make 3m
cd racket; make 3m
make cgc
make common
make g-c
cd gc; make ../libmzgc.a
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/alloc.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/reclaim.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/allchblk.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/misc.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -o if_mach ../../../racket/gc/if_mach.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -o if_not_there ../../../racket/gc/if_not_there.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -o threadlibs ../../../racket/gc/threadlibs.c
rm -f mach_dep.o
./if_mach SPARC SOLARIS clang -c -o mach_dep2.o ../../../racket/gc/sparc_mach_dep.S
./if_mach SPARC OPENBSD as -o mach_dep2.o ../../../racket/gc/sparc_sunos4_mach_dep.s
./if_mach SPARC NETBSD as -o mach_dep2.o ../../../racket/gc/sparc_netbsd_mach_dep.s
./if_mach SPARC "" clang -c -o mach_dep2.o ../../../racket/gc/sparc_mach_dep.S
./if_mach SPARC "" clang -c -o mach_dep1.o -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread ../../../racket/gc/mach_dep.c
./if_mach SPARC "" ld -r -o mach_dep.o mach_dep1.o mach_dep2.o
./if_mach IA64 "" as -o ia64_save_regs_in_stack.o ../../../racket/gc/ia64_save_regs_in_stack.s
./if_mach IA64 "" clang -c -o mach_dep1.o -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread ../../../racket/gc/mach_dep.c
./if_mach IA64 "" ld -r -o mach_dep.o mach_dep1.o ia64_save_regs_in_stack.o
./if_not_there mach_dep.o clang -c -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread ../../../racket/gc/mach_dep.c
^^^^Starting command^^^^
rm -f mach_dep1.o
./if_mach IA64 "" as -o mach_dep1.o ../../../racket/gc/ia64_save_regs_in_stack.s
./if_not_there mach_dep1.o clang -c -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread ../../../racket/gc/mach_dep1.c
^^^^Starting command^^^^
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/os_dep.c
rm -f mark_rts.o
./if_mach ALPHA OSF1 clang -c -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -Wo,-notail ../../../racket/gc/mark_rts.c
./if_not_there mark_rts.o clang -c -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 ../../../racket/gc/mark_rts.c
^^^^Starting command^^^^
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/headers.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/mark.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/obj_map.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/blacklst.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/finalize.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/new_hblk.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/dbg_mlc.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/malloc.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/stubborn.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/checksums.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/pthread_support.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/pthread_stop_world.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/darwin_stop_world.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/typd_mlc.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/ptr_chck.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/mallocx.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/gcj_mlc.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/specific.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/gc_dlopen.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/backgraph.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/win32_threads.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/thread_local_alloc.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/openbsd_stop_world.c
clang -I../../../racket/gc/include -I../../../racket/gc/libatomic_ops/src -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DNO_EXECUTE_PERMISSION -DSILENT -DNO_GETENV -DLARGE_CONFIG -DATOMIC_UNCOLLECTABLE -DINITIAL_MARK_STACK_SIZE=8192 -c ../../../racket/gc/dyn_load.c
../../../racket/gc/dyn_load.c:1154:39: warning: incompatible pointer types passing 'void (const struct
mach_header_64 *, intptr_t)' to parameter of type 'void (*)(const struct mach_header *, intptr_t)'
_dyld_register_func_for_add_image(GC_dyld_image_add);
^~~~~~~~~~~~~~~~~
In file included from ../../../racket/gc/dyn_load.c:1042:
/usr/include/mach-o/dyld.h:61:54: note: passing argument to parameter 'func' here
extern void _dyld_register_func_for_add_image(void (*func)(const struct mach_header* mh, intptr_t ...
^
../../../racket/gc/dyn_load.c:1155:42: warning: incompatible pointer types passing 'void (const struct
mach_header_64 *, intptr_t)' to parameter of type 'void (*)(const struct mach_header *, intptr_t)'
_dyld_register_func_for_remove_image(GC_dyld_image_remove);
^~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/gc/dyn_load.c:1042:
/usr/include/mach-o/dyld.h:62:57: note: passing argument to parameter 'func' here
extern void _dyld_register_func_for_remove_image(void (*func)(const struct mach_header* mh, intptr_t ...
^
../../../racket/gc/dyn_load.c:1167:11: warning: '_dyld_bind_fully_image_containing_address' is deprecated
[-Wdeprecated-declarations]
if(!_dyld_bind_fully_image_containing_address((unsigned long*)GC_malloc))
^
3 warnings generated.
../../../racket/gc/../../utils/nicear ar ruv ../libmzgc.a alloc.o reclaim.o allchblk.o misc.o mach_dep.o mach_dep1.o os_dep.o mark_rts.o headers.o mark.o obj_map.o blacklst.o finalize.o new_hblk.o dbg_mlc.o malloc.o stubborn.o checksums.o pthread_support.o pthread_stop_world.o darwin_stop_world.o typd_mlc.o ptr_chck.o mallocx.o gcj_mlc.o specific.o gc_dlopen.o backgraph.o win32_threads.o thread_local_alloc.o openbsd_stop_world.o dyn_load.o
ar: creating archive ../libmzgc.a
/usr/bin/ranlib: file: ../libmzgc.a(mach_dep1.o) has no symbols
/usr/bin/ranlib: file: ../libmzgc.a(checksums.o) has no symbols
/usr/bin/ranlib: file: ../libmzgc.a(pthread_support.o) has no symbols
/usr/bin/ranlib: file: ../libmzgc.a(pthread_stop_world.o) has no symbols
/usr/bin/ranlib: file: ../libmzgc.a(darwin_stop_world.o) has no symbols
/usr/bin/ranlib: file: ../libmzgc.a(specific.o) has no symbols
/usr/bin/ranlib: file: ../libmzgc.a(gc_dlopen.o) has no symbols
/usr/bin/ranlib: file: ../libmzgc.a(backgraph.o) has no symbols
/usr/bin/ranlib: file: ../libmzgc.a(win32_threads.o) has no symbols
/usr/bin/ranlib: file: ../libmzgc.a(thread_local_alloc.o) has no symbols
/usr/bin/ranlib: file: ../libmzgc.a(openbsd_stop_world.o) has no symbols
a - alloc.o
a - reclaim.o
a - allchblk.o
a - misc.o
a - mach_dep.o
a - mach_dep1.o
a - os_dep.o
a - mark_rts.o
a - headers.o
a - mark.o
a - obj_map.o
a - blacklst.o
a - finalize.o
a - new_hblk.o
a - dbg_mlc.o
a - malloc.o
a - stubborn.o
a - checksums.o
a - pthread_support.o
a - pthread_stop_world.o
a - darwin_stop_world.o
a - typd_mlc.o
a - ptr_chck.o
a - mallocx.o
a - gcj_mlc.o
a - specific.o
a - gc_dlopen.o
a - backgraph.o
a - win32_threads.o
a - thread_local_alloc.o
a - openbsd_stop_world.o
a - dyn_load.o
ranlib ../libmzgc.a
ranlib: file: ../libmzgc.a(mach_dep1.o) has no symbols
ranlib: file: ../libmzgc.a(checksums.o) has no symbols
ranlib: file: ../libmzgc.a(pthread_support.o) has no symbols
ranlib: file: ../libmzgc.a(pthread_stop_world.o) has no symbols
ranlib: file: ../libmzgc.a(darwin_stop_world.o) has no symbols
ranlib: file: ../libmzgc.a(specific.o) has no symbols
ranlib: file: ../libmzgc.a(gc_dlopen.o) has no symbols
ranlib: file: ../libmzgc.a(backgraph.o) has no symbols
ranlib: file: ../libmzgc.a(win32_threads.o) has no symbols
ranlib: file: ../libmzgc.a(thread_local_alloc.o) has no symbols
ranlib: file: ../libmzgc.a(openbsd_stop_world.o) has no symbols
make foreign-stuff
cd ../foreign; make all
make foreign.o
clang -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -I./../racket -I../../foreign/../racket/include -I../../foreign/../racket/src -Ilibffi/include -c ../../foreign/foreign.c -o foreign.o
../../foreign/foreign.c:2490:35: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
void *c_func = (void*)(SCHEME_VEC_ELS(data)[1]);
^ ~
In file included from ../../foreign/foreign.c:9:
In file included from ../../foreign/../racket/src/schpriv.h:21:
../../foreign/../racket/include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../foreign/../racket/include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../foreign/foreign.c:2491:27: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
Scheme_Object *itypes = SCHEME_VEC_ELS(data)[2];
^ ~
In file included from ../../foreign/foreign.c:9:
In file included from ../../foreign/../racket/src/schpriv.h:21:
../../foreign/../racket/include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../foreign/../racket/include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../foreign/foreign.c:2492:27: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
Scheme_Object *otype = SCHEME_VEC_ELS(data)[3];
^ ~
In file included from ../../foreign/foreign.c:9:
In file included from ../../foreign/../racket/src/schpriv.h:21:
../../foreign/../racket/include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../foreign/../racket/include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../foreign/foreign.c:2494:38: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
ffi_cif *cif = (ffi_cif*)(SCHEME_VEC_ELS(data)[4]);
^ ~
In file included from ../../foreign/foreign.c:9:
In file included from ../../foreign/../racket/src/schpriv.h:21:
../../foreign/../racket/include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../foreign/../racket/include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../foreign/foreign.c:2495:31: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
intptr_t cfoff = SCHEME_INT_VAL(SCHEME_VEC_ELS(data)[5]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../foreign/foreign.c:9:
In file included from ../../foreign/../racket/src/schpriv.h:21:
../../foreign/../racket/include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../foreign/foreign.c:2495:31: note: instantiated from:
intptr_t cfoff = SCHEME_INT_VAL(SCHEME_VEC_ELS(data)[5]);
^ ~
../../foreign/foreign.c:2495:46: note: instantiated from:
intptr_t cfoff = SCHEME_INT_VAL(SCHEME_VEC_ELS(data)[5]);
^ ~
In file included from ../../foreign/foreign.c:9:
In file included from ../../foreign/../racket/src/schpriv.h:21:
../../foreign/../racket/include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../foreign/../racket/include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../foreign/foreign.c:2496:30: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
int save_errno = SCHEME_INT_VAL(SCHEME_VEC_ELS(data)[6]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../foreign/foreign.c:9:
In file included from ../../foreign/../racket/src/schpriv.h:21:
../../foreign/../racket/include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../foreign/foreign.c:2496:30: note: instantiated from:
int save_errno = SCHEME_INT_VAL(SCHEME_VEC_ELS(data)[6]);
^ ~
../../foreign/foreign.c:2496:45: note: instantiated from:
int save_errno = SCHEME_INT_VAL(SCHEME_VEC_ELS(data)[6]);
^ ~
In file included from ../../foreign/foreign.c:9:
In file included from ../../foreign/../racket/src/schpriv.h:21:
../../foreign/../racket/include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../foreign/../racket/include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../foreign/foreign.c:2669:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(data)[1] = obj;
^ ~
In file included from ../../foreign/foreign.c:9:
In file included from ../../foreign/../racket/src/schpriv.h:21:
../../foreign/../racket/include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../foreign/../racket/include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../foreign/foreign.c:2670:3: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(data)[2] = itypes;
^ ~
In file included from ../../foreign/foreign.c:9:
In file included from ../../foreign/../racket/src/schpriv.h:21:
../../foreign/../racket/include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../foreign/../racket/include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../foreign/foreign.c:2671:3: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(data)[3] = otype;
^ ~
In file included from ../../foreign/foreign.c:9:
In file included from ../../foreign/../racket/src/schpriv.h:21:
../../foreign/../racket/include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../foreign/../racket/include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../foreign/foreign.c:2672:3: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(data)[4] = (Scheme_Object*)cif;
^ ~
In file included from ../../foreign/foreign.c:9:
In file included from ../../foreign/../racket/src/schpriv.h:21:
../../foreign/../racket/include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../foreign/../racket/include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../foreign/foreign.c:2673:3: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(data)[5] = scheme_make_integer(ooff);
^ ~
In file included from ../../foreign/foreign.c:9:
In file included from ../../foreign/../racket/src/schpriv.h:21:
../../foreign/../racket/include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../foreign/../racket/include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../foreign/foreign.c:2674:3: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(data)[6] = scheme_make_integer(save_errno);
^ ~
In file included from ../../foreign/foreign.c:9:
In file included from ../../foreign/../racket/src/schpriv.h:21:
../../foreign/../racket/include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../foreign/../racket/include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
12 warnings generated.
make libffi_ON
make libffi/libffi.la
cd libffi; make libffi.la
depbase=`echo src/debug.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/debug.lo -MD -MP -MF $depbase.Tpo -c -o src/debug.lo ../../../foreign/libffi/src/debug.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/debug.lo -MD -MP -MF src/.deps/debug.Tpo -c ../../../foreign/libffi/src/debug.c -fno-common -DPIC -o src/.libs/debug.o
libtool: compile: clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/debug.lo -MD -MP -MF src/.deps/debug.Tpo -c ../../../foreign/libffi/src/debug.c -o src/debug.o >/dev/null 2>&1
depbase=`echo src/prep_cif.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/prep_cif.lo -MD -MP -MF $depbase.Tpo -c -o src/prep_cif.lo ../../../foreign/libffi/src/prep_cif.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/prep_cif.lo -MD -MP -MF src/.deps/prep_cif.Tpo -c ../../../foreign/libffi/src/prep_cif.c -fno-common -DPIC -o src/.libs/prep_cif.o
libtool: compile: clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/prep_cif.lo -MD -MP -MF src/.deps/prep_cif.Tpo -c ../../../foreign/libffi/src/prep_cif.c -o src/prep_cif.o >/dev/null 2>&1
depbase=`echo src/types.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/types.lo -MD -MP -MF $depbase.Tpo -c -o src/types.lo ../../../foreign/libffi/src/types.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/types.lo -MD -MP -MF src/.deps/types.Tpo -c ../../../foreign/libffi/src/types.c -fno-common -DPIC -o src/.libs/types.o
libtool: compile: clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/types.lo -MD -MP -MF src/.deps/types.Tpo -c ../../../foreign/libffi/src/types.c -o src/types.o >/dev/null 2>&1
depbase=`echo src/raw_api.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/raw_api.lo -MD -MP -MF $depbase.Tpo -c -o src/raw_api.lo ../../../foreign/libffi/src/raw_api.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/raw_api.lo -MD -MP -MF src/.deps/raw_api.Tpo -c ../../../foreign/libffi/src/raw_api.c -fno-common -DPIC -o src/.libs/raw_api.o
libtool: compile: clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/raw_api.lo -MD -MP -MF src/.deps/raw_api.Tpo -c ../../../foreign/libffi/src/raw_api.c -o src/raw_api.o >/dev/null 2>&1
depbase=`echo src/java_raw_api.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/java_raw_api.lo -MD -MP -MF $depbase.Tpo -c -o src/java_raw_api.lo ../../../foreign/libffi/src/java_raw_api.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/java_raw_api.lo -MD -MP -MF src/.deps/java_raw_api.Tpo -c ../../../foreign/libffi/src/java_raw_api.c -fno-common -DPIC -o src/.libs/java_raw_api.o
libtool: compile: clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/java_raw_api.lo -MD -MP -MF src/.deps/java_raw_api.Tpo -c ../../../foreign/libffi/src/java_raw_api.c -o src/java_raw_api.o >/dev/null 2>&1
depbase=`echo src/closures.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/closures.lo -MD -MP -MF $depbase.Tpo -c -o src/closures.lo ../../../foreign/libffi/src/closures.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/closures.lo -MD -MP -MF src/.deps/closures.Tpo -c ../../../foreign/libffi/src/closures.c -fno-common -DPIC -o src/.libs/closures.o
libtool: compile: clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/closures.lo -MD -MP -MF src/.deps/closures.Tpo -c ../../../foreign/libffi/src/closures.c -o src/closures.o >/dev/null 2>&1
depbase=`echo src/x86/ffi.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/x86/ffi.lo -MD -MP -MF $depbase.Tpo -c -o src/x86/ffi.lo ../../../foreign/libffi/src/x86/ffi.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/x86/ffi.lo -MD -MP -MF src/x86/.deps/ffi.Tpo -c ../../../foreign/libffi/src/x86/ffi.c -fno-common -DPIC -o src/x86/.libs/ffi.o
libtool: compile: clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/x86/ffi.lo -MD -MP -MF src/x86/.deps/ffi.Tpo -c ../../../foreign/libffi/src/x86/ffi.c -o src/x86/ffi.o >/dev/null 2>&1
depbase=`echo src/x86/darwin.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --mode=compile clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -g -O2 -MT src/x86/darwin.lo -MD -MP -MF $depbase.Tpo -c -o src/x86/darwin.lo ../../../foreign/libffi/src/x86/darwin.S &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -g -O2 -MT src/x86/darwin.lo -MD -MP -MF src/x86/.deps/darwin.Tpo -c ../../../foreign/libffi/src/x86/darwin.S -fno-common -DPIC -o src/x86/.libs/darwin.o
libtool: compile: clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -g -O2 -MT src/x86/darwin.lo -MD -MP -MF src/x86/.deps/darwin.Tpo -c ../../../foreign/libffi/src/x86/darwin.S -o src/x86/darwin.o >/dev/null 2>&1
depbase=`echo src/x86/ffi64.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --tag=CC --mode=compile clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/x86/ffi64.lo -MD -MP -MF $depbase.Tpo -c -o src/x86/ffi64.lo ../../../foreign/libffi/src/x86/ffi64.c &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/x86/ffi64.lo -MD -MP -MF src/x86/.deps/ffi64.Tpo -c ../../../foreign/libffi/src/x86/ffi64.c -fno-common -DPIC -o src/x86/.libs/ffi64.o
libtool: compile: clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -Wall -g -fexceptions -g -O2 -MT src/x86/ffi64.lo -MD -MP -MF src/x86/.deps/ffi64.Tpo -c ../../../foreign/libffi/src/x86/ffi64.c -o src/x86/ffi64.o >/dev/null 2>&1
depbase=`echo src/x86/darwin64.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
/bin/sh ./libtool --mode=compile clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -g -O2 -MT src/x86/darwin64.lo -MD -MP -MF $depbase.Tpo -c -o src/x86/darwin64.lo ../../../foreign/libffi/src/x86/darwin64.S &&\
mv -f $depbase.Tpo $depbase.Plo
libtool: compile: clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -g -O2 -MT src/x86/darwin64.lo -MD -MP -MF src/x86/.deps/darwin64.Tpo -c ../../../foreign/libffi/src/x86/darwin64.S -fno-common -DPIC -o src/x86/.libs/darwin64.o
libtool: compile: clang -DHAVE_CONFIG_H -I. -I../../../foreign/libffi -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -I. -I../../../foreign/libffi/include -Iinclude -I../../../foreign/libffi/src -g -O2 -MT src/x86/darwin64.lo -MD -MP -MF src/x86/.deps/darwin64.Tpo -c ../../../foreign/libffi/src/x86/darwin64.S -o src/x86/darwin64.o >/dev/null 2>&1
/bin/sh ./libtool --tag=CC --mode=link clang -Wall -g -fexceptions -g -O2 -version-info `grep -v '^#' ../../../foreign/libffi/libtool-version` -o libffi.la -rpath /Users/elliottcable/Code/Sources/racket/lib src/debug.lo src/prep_cif.lo src/types.lo src/raw_api.lo src/java_raw_api.lo src/closures.lo src/x86/ffi.lo src/x86/darwin.lo src/x86/ffi64.lo src/x86/darwin64.lo
libtool: link: clang -dynamiclib -Wl,-undefined -Wl,dynamic_lookup -o .libs/libffi.5.dylib src/.libs/debug.o src/.libs/prep_cif.o src/.libs/types.o src/.libs/raw_api.o src/.libs/java_raw_api.o src/.libs/closures.o src/x86/.libs/ffi.o src/x86/.libs/darwin.o src/x86/.libs/ffi64.o src/x86/.libs/darwin64.o -install_name /Users/elliottcable/Code/Sources/racket/lib/libffi.5.dylib -compatibility_version 6 -current_version 6.10 -Wl,-single_module
ld: warning: could not create compact unwind for _ffi_call_unix64: does not use RBP or RSP based frame
libtool: link: dsymutil .libs/libffi.5.dylib || :
libtool: link: (cd ".libs" && rm -f "libffi.dylib" && ln -s "libffi.5.dylib" "libffi.dylib")
libtool: link: ar cru .libs/libffi.a src/debug.o src/prep_cif.o src/types.o src/raw_api.o src/java_raw_api.o src/closures.o src/x86/ffi.o src/x86/darwin.o src/x86/ffi64.o src/x86/darwin64.o
/usr/bin/ranlib: file: .libs/libffi.a(ffi.o) has no symbols
/usr/bin/ranlib: file: .libs/libffi.a(darwin.o) has no symbols
libtool: link: ranlib .libs/libffi.a
ranlib: file: .libs/libffi.a(ffi.o) has no symbols
ranlib: file: .libs/libffi.a(darwin.o) has no symbols
libtool: link: ( cd ".libs" && rm -f "libffi.la" && ln -s "../libffi.la" "libffi.la" )
make dynlib
cd dynsrc; make dynlib
make ../mzdyn.o
clang -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -I./.. -I../../../racket/dynsrc/../include -I../../../racket/dynsrc/../src -c ../../../racket/dynsrc/mzdyn.c -o ../mzdyn.o
make ../starter
clang -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -I./.. -I../../../racket/dynsrc/../include -I../../../racket/dynsrc/../src -o ../starter ../../../racket/dynsrc/ustart.c
make mzlibrary
cd src; make all
make mzobjects
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/salloc.c -o salloc.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/bignum.c -o bignum.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/bool.c -o bool.o
../../../racket/src/bool.c:556:18: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
procs1 = SCHEME_VEC_ELS(procs1)[1];
^ ~
In file included from ../../../racket/src/bool.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
1 warning generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/builtin.c -o builtin.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/char.c -o char.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/compenv.c -o compenv.o
../../../racket/src/compenv.c:414:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = (Scheme_Object *)pp;
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:415:3: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = data;
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:416:3: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[3] = end_stmts;
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:417:3: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[4] = context_key;
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:418:3: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[5] = (requires ? requires : scheme_false);
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:419:3: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[6] = scheme_null; /* accumulated requires */
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:420:3: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[7] = provides;
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:429:12: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& SCHEME_TRUEP(SCHEME_VEC_ELS(COMPILE_DATA(orig_env)->lifts)[5]))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/compenv.c:429:12: note: instantiated from:
&& SCHEME_TRUEP(SCHEME_VEC_ELS(COMPILE_DATA(orig_env)->lifts)[5]))
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/compenv.c:429:12: note: instantiated from:
&& SCHEME_TRUEP(SCHEME_VEC_ELS(COMPILE_DATA(orig_env)->lifts)[5]))
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/compenv.c:429:12: note: instantiated from:
&& SCHEME_TRUEP(SCHEME_VEC_ELS(COMPILE_DATA(orig_env)->lifts)[5]))
^ ~
../../../racket/src/compenv.c:429:25: note: instantiated from:
&& SCHEME_TRUEP(SCHEME_VEC_ELS(COMPILE_DATA(orig_env)->lifts)[5]))
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:441:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = scheme_void;
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:442:5: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = scheme_void;
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:443:5: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[3] = scheme_false;
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:444:5: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[4] = scheme_false;
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:445:5: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[5] = p; /* (rcons NULL env) => continue with env */
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:446:5: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[6] = scheme_null;
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:447:5: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[7] = scheme_false;
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:460:10: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
return SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[3];
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:465:10: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
return SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[6];
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:470:10: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
return SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[7];
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:589:7: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(pr)[1] = scheme_make_integer(flags);
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:590:7: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(pr)[2] = scheme_make_integer(depth);
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:1057:14: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
abdg = SCHEME_VEC_ELS(amarks)[1];
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:1175:7: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(a)[1] = bdg;
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:2147:37: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
cp = *(Scheme_Lift_Capture_Proc *)SCHEME_VEC_ELS(vec)[1];
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:2148:10: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
data = SCHEME_VEC_ELS(vec)[2];
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:2188:10: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
return SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[4];
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:2199:12: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& SCHEME_TRUEP(SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[3]))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/compenv.c:2199:12: note: instantiated from:
&& SCHEME_TRUEP(SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[3]))
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/compenv.c:2199:12: note: instantiated from:
&& SCHEME_TRUEP(SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[3]))
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/compenv.c:2199:12: note: instantiated from:
&& SCHEME_TRUEP(SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[3]))
^ ~
../../../racket/src/compenv.c:2199:25: note: instantiated from:
&& SCHEME_TRUEP(SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[3]))
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:2212:31: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
pr = scheme_make_pair(expr, SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[3]);
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:2213:3: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[3] = pr;
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:2230:12: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& SCHEME_TRUEP(SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[5])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/compenv.c:2230:12: note: instantiated from:
&& SCHEME_TRUEP(SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[5])) {
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/compenv.c:2230:12: note: instantiated from:
&& SCHEME_TRUEP(SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[5])) {
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/compenv.c:2230:12: note: instantiated from:
&& SCHEME_TRUEP(SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[5])) {
^ ~
../../../racket/src/compenv.c:2230:25: note: instantiated from:
&& SCHEME_TRUEP(SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[5])) {
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:2231:14: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
data = SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[5];
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:2253:31: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
pr = scheme_make_pair(form, SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[6]);
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:2254:3: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[6] = pr;
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:2275:12: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& SCHEME_TRUEP(SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[7])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/compenv.c:2275:12: note: instantiated from:
&& SCHEME_TRUEP(SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[7])) {
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/compenv.c:2275:12: note: instantiated from:
&& SCHEME_TRUEP(SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[7])) {
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/compenv.c:2275:12: note: instantiated from:
&& SCHEME_TRUEP(SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[7])) {
^ ~
../../../racket/src/compenv.c:2275:25: note: instantiated from:
&& SCHEME_TRUEP(SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[7])) {
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:2294:31: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
pr = scheme_make_pair(form, SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[7]);
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compenv.c:2295:3: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(COMPILE_DATA(env)->lifts)[7] = pr;
^ ~
In file included from ../../../racket/src/compenv.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
35 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/compile.c -o compile.o
../../../racket/src/compile.c:453:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = cstx->srcloc->src;
^ ~
In file included from ../../../racket/src/compile.c:31:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compile.c:455:7: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = scheme_make_integer(cstx->srcloc->line);
^ ~
In file included from ../../../racket/src/compile.c:31:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compile.c:456:7: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[3] = scheme_make_integer(cstx->srcloc->col-1);
^ ~
In file included from ../../../racket/src/compile.c:31:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compile.c:458:7: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = scheme_false;
^ ~
In file included from ../../../racket/src/compile.c:31:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compile.c:459:7: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[3] = scheme_false;
^ ~
In file included from ../../../racket/src/compile.c:31:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compile.c:462:7: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[4] = scheme_make_integer(cstx->srcloc->pos);
^ ~
In file included from ../../../racket/src/compile.c:31:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compile.c:464:7: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[4] = scheme_false;
^ ~
In file included from ../../../racket/src/compile.c:31:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compile.c:466:7: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[5] = scheme_make_integer(cstx->srcloc->span);
^ ~
In file included from ../../../racket/src/compile.c:31:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compile.c:468:7: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[5] = scheme_false;
^ ~
In file included from ../../../racket/src/compile.c:31:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compile.c:469:5: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[6] = (src_based_name ? scheme_true : scheme_false);
^ ~
In file included from ../../../racket/src/compile.c:31:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compile.c:785:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = val;
^ ~
In file included from ../../../racket/src/compile.c:31:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compile.c:2790:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = dummy;
^ ~
In file included from ../../../racket/src/compile.c:31:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compile.c:2791:3: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = names;
^ ~
In file included from ../../../racket/src/compile.c:31:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/compile.c:2792:3: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[3] = val;
^ ~
In file included from ../../../racket/src/compile.c:31:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
14 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/complex.c -o complex.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/dynext.c -o dynext.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/env.c -o env.o
../../../racket/src/env.c:833:16: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
modchain = SCHEME_VEC_ELS(env->modchain)[1];
^ ~
In file included from ../../../racket/src/env.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/env.c:840:7: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(env->modchain)[1] = modchain;
^ ~
In file included from ../../../racket/src/env.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/env.c:841:7: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(modchain)[2] = env->modchain;
^ ~
In file included from ../../../racket/src/env.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/env.c:873:16: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
modchain = SCHEME_VEC_ELS(env->modchain)[2];
^ ~
In file included from ../../../racket/src/env.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/env.c:880:7: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(env->modchain)[2] = modchain;
^ ~
In file included from ../../../racket/src/env.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/env.c:881:7: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(modchain)[1] = env->modchain;
^ ~
In file included from ../../../racket/src/env.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/env.c:915:5: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(modchain)[2] = modchain;
^ ~
In file included from ../../../racket/src/env.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/env.c:916:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(modchain)[1] = modchain;
^ ~
In file included from ../../../racket/src/env.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/env.c:980:18: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
modchain = SCHEME_VEC_ELS(modchain)[1];
^ ~
In file included from ../../../racket/src/env.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/env.c:987:9: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(menv2->modchain)[1] = modchain;
^ ~
In file included from ../../../racket/src/env.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/env.c:988:9: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(modchain)[2] = menv2->modchain;
^ ~
In file included from ../../../racket/src/env.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/env.c:1055:12: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
next = SCHEME_VEC_ELS(modchain)[1];
^ ~
In file included from ../../../racket/src/env.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/env.c:1056:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(modchain)[1] = scheme_void;
^ ~
In file included from ../../../racket/src/env.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
13 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/error.c -o error.o
../../../racket/src/error.c:2450:55: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
sloc->slots[0], sloc->slots[1],
^ ~
In file included from ../../../racket/src/error.c:26:
../../../racket/src/schpriv.h:721:18: note: array 'slots' declared here
Scheme_Object *slots[1];
^
../../../racket/src/error.c:2451:39: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
sloc->slots[2], sloc->slots[3],
^ ~
In file included from ../../../racket/src/error.c:26:
../../../racket/src/schpriv.h:721:18: note: array 'slots' declared here
Scheme_Object *slots[1];
^
../../../racket/src/error.c:2451:55: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
sloc->slots[2], sloc->slots[3],
^ ~
In file included from ../../../racket/src/error.c:26:
../../../racket/src/schpriv.h:721:18: note: array 'slots' declared here
Scheme_Object *slots[1];
^
../../../racket/src/error.c:2904:13: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(msg)[1] = v;
^ ~
In file included from ../../../racket/src/error.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/error.c:2905:13: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(msg)[2] = (data ? data : scheme_false);
^ ~
In file included from ../../../racket/src/error.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/error.c:3448:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
((Scheme_Structure *)arg)->slots[1] = marks;
^ ~
In file included from ../../../racket/src/error.c:26:
../../../racket/src/schpriv.h:721:18: note: array 'slots' declared here
Scheme_Object *slots[1];
^
6 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/eval.c -o eval.o
../../../racket/src/eval.c:1989:26: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
rp = (Resolve_Prefix *)SCHEME_VEC_ELS(form)[1];
^ ~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/eval.c:1990:22: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
base_stack_depth = SCHEME_VEC_ELS(form)[2];
^ ~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/eval.c:1998:15: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
dummy = SCHEME_VEC_ELS(form)[3];
^ ~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/eval.c:2007:11: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
dummy = SCHEME_VEC_ELS(form)[3];
^ ~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/eval.c:2142:39: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(char *)SCHEME_VEC_ELS(vinfo)[1],
^ ~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/eval.c:2143:45: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(Validate_TLS)SCHEME_VEC_ELS(vinfo)[2],
^ ~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/eval.c:2144:31: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_INT_VAL(SCHEME_VEC_ELS(vinfo)[3]),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/eval.c:2144:31: note: instantiated from:
SCHEME_INT_VAL(SCHEME_VEC_ELS(vinfo)[3]),
^ ~
../../../racket/src/eval.c:2144:46: note: instantiated from:
SCHEME_INT_VAL(SCHEME_VEC_ELS(vinfo)[3]),
^ ~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/eval.c:2145:31: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_INT_VAL(SCHEME_VEC_ELS(vinfo)[4]),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/eval.c:2145:31: note: instantiated from:
SCHEME_INT_VAL(SCHEME_VEC_ELS(vinfo)[4]),
^ ~
../../../racket/src/eval.c:2145:46: note: instantiated from:
SCHEME_INT_VAL(SCHEME_VEC_ELS(vinfo)[4]),
^ ~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/eval.c:2146:31: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_INT_VAL(SCHEME_VEC_ELS(vinfo)[5]),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/eval.c:2146:31: note: instantiated from:
SCHEME_INT_VAL(SCHEME_VEC_ELS(vinfo)[5]),
^ ~
../../../racket/src/eval.c:2146:46: note: instantiated from:
SCHEME_INT_VAL(SCHEME_VEC_ELS(vinfo)[5]),
^ ~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/eval.c:2147:32: warning: array index of '8' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(SCHEME_TRUEP(SCHEME_VEC_ELS(vinfo)[8])
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/eval.c:2147:32: note: instantiated from:
(SCHEME_TRUEP(SCHEME_VEC_ELS(vinfo)[8])
^ ~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/eval.c:2147:32: note: instantiated from:
(SCHEME_TRUEP(SCHEME_VEC_ELS(vinfo)[8])
^ ~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/eval.c:2147:32: note: instantiated from:
(SCHEME_TRUEP(SCHEME_VEC_ELS(vinfo)[8])
^ ~
../../../racket/src/eval.c:2147:45: note: instantiated from:
(SCHEME_TRUEP(SCHEME_VEC_ELS(vinfo)[8])
^ ~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/eval.c:2148:42: warning: array index of '8' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
? (void *)SCHEME_VEC_ELS(vinfo)[8]
^ ~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/eval.c:2150:31: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_INT_VAL(SCHEME_VEC_ELS(vinfo)[6]),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/eval.c:2150:31: note: instantiated from:
SCHEME_INT_VAL(SCHEME_VEC_ELS(vinfo)[6]),
^ ~
../../../racket/src/eval.c:2150:46: note: instantiated from:
SCHEME_INT_VAL(SCHEME_VEC_ELS(vinfo)[6]),
^ ~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/eval.c:2151:32: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(SCHEME_TRUEP(SCHEME_VEC_ELS(vinfo)[7])
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/eval.c:2151:32: note: instantiated from:
(SCHEME_TRUEP(SCHEME_VEC_ELS(vinfo)[7])
^ ~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/eval.c:2151:32: note: instantiated from:
(SCHEME_TRUEP(SCHEME_VEC_ELS(vinfo)[7])
^ ~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/eval.c:2151:32: note: instantiated from:
(SCHEME_TRUEP(SCHEME_VEC_ELS(vinfo)[7])
^ ~
../../../racket/src/eval.c:2151:45: note: instantiated from:
(SCHEME_TRUEP(SCHEME_VEC_ELS(vinfo)[7])
^ ~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/eval.c:2152:54: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
? (Scheme_Hash_Tree *)SCHEME_VEC_ELS(vinfo)[7]
^ ~
In file included from ../../../racket/src/eval.c:132:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/eval.c:3693:4: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
seq->array[1] = prev_o;
^ ~
In file included from ../../../racket/src/eval.c:132:
../../../racket/src/schpriv.h:1260:18: note: array 'array' declared here
Scheme_Object *array[1];
^
15 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/file.c -o file.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/fun.c -o fun.o
../../../racket/src/fun.c:1943:28: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
return clone_arity(((Scheme_Structure *)p)->slots[1], drop);
^ ~
In file included from ../../../racket/src/fun.c:32:
../../../racket/src/schpriv.h:721:18: note: array 'slots' declared here
Scheme_Object *slots[1];
^
../../../racket/src/fun.c:1947:13: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
v = ((Scheme_Structure *)p)->slots[1];
^ ~
In file included from ../../../racket/src/fun.c:32:
../../../racket/src/schpriv.h:721:18: note: array 'slots' declared here
Scheme_Object *slots[1];
^
../../../racket/src/fun.c:2282:12: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& SCHEME_TRUEP(((Scheme_Structure *)a)->slots[2])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/fun.c:2282:12: note: instantiated from:
&& SCHEME_TRUEP(((Scheme_Structure *)a)->slots[2])) {
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/fun.c:2282:12: note: instantiated from:
&& SCHEME_TRUEP(((Scheme_Structure *)a)->slots[2])) {
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/fun.c:2282:12: note: instantiated from:
&& SCHEME_TRUEP(((Scheme_Structure *)a)->slots[2])) {
^ ~
../../../racket/src/fun.c:2282:25: note: instantiated from:
&& SCHEME_TRUEP(((Scheme_Structure *)a)->slots[2])) {
^ ~
In file included from ../../../racket/src/fun.c:32:
../../../racket/src/schpriv.h:721:18: note: array 'slots' declared here
Scheme_Object *slots[1];
^
../../../racket/src/fun.c:2356:30: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
Scheme_Object *sym = ((Scheme_Structure *)p)->slots[2];
^ ~
In file included from ../../../racket/src/fun.c:32:
../../../racket/src/schpriv.h:721:18: note: array 'slots' declared here
Scheme_Object *slots[1];
^
../../../racket/src/fun.c:2474:14: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
return ((Scheme_Structure *)a)->slots[2];
^ ~
In file included from ../../../racket/src/fun.c:32:
../../../racket/src/schpriv.h:721:18: note: array 'slots' declared here
Scheme_Object *slots[1];
^
../../../racket/src/fun.c:2638:14: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
name = ((Scheme_Structure *)proc)->slots[2];
^ ~
In file included from ../../../racket/src/fun.c:32:
../../../racket/src/schpriv.h:721:18: note: array 'slots' declared here
Scheme_Object *slots[1];
^
../../../racket/src/fun.c:2640:17: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
is_meth = ((Scheme_Structure *)proc)->slots[3];
^ ~
In file included from ../../../racket/src/fun.c:32:
../../../racket/src/schpriv.h:721:18: note: array 'slots' declared here
Scheme_Object *slots[1];
^
../../../racket/src/fun.c:6503:40: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = SCHEME_VEC_ELS(cache)[1];
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:6503:15: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = SCHEME_VEC_ELS(cache)[1];
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:6504:40: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = SCHEME_VEC_ELS(cache)[2];
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:6504:15: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = SCHEME_VEC_ELS(cache)[2];
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:6505:40: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[3] = SCHEME_VEC_ELS(cache)[3];
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:6505:15: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[3] = SCHEME_VEC_ELS(cache)[3];
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:6897:34: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
loc = scheme_make_location(SCHEME_VEC_ELS(name)[1],
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:6898:6: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(name)[2],
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:6899:6: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(name)[3],
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:6900:6: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(name)[4],
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:6901:6: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(name)[5]);
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:6902:11: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SCHEME_TRUEP(SCHEME_VEC_ELS(name)[6]))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/fun.c:6902:11: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(name)[6]))
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/fun.c:6902:11: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(name)[6]))
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/fun.c:6902:11: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(name)[6]))
^ ~
../../../racket/src/fun.c:6902:24: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(name)[6]))
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7009:17: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SCHEME_VEC_ELS(cache)[1]) {
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7010:19: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SAME_OBJ(SCHEME_VEC_ELS(cache)[1], key)) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/fun.c:7010:19: note: instantiated from:
if (SAME_OBJ(SCHEME_VEC_ELS(cache)[1], key)) {
^ ~
../../../racket/src/fun.c:7010:28: note: instantiated from:
if (SAME_OBJ(SCHEME_VEC_ELS(cache)[1], key)) {
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7011:23: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
val = SCHEME_VEC_ELS(cache)[2];
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7012:42: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
vpos = (MZ_MARK_POS_TYPE)SCHEME_VEC_ELS(cache)[3];
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7017:41: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
ht = (Scheme_Hash_Table *)SCHEME_VEC_ELS(cache)[2];
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7058:42: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = SCHEME_VEC_ELS(cache)[1];
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7058:17: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = SCHEME_VEC_ELS(cache)[1];
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7059:42: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = SCHEME_VEC_ELS(cache)[2];
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7059:17: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = SCHEME_VEC_ELS(cache)[2];
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7060:42: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[3] = SCHEME_VEC_ELS(cache)[3];
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7060:17: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[3] = SCHEME_VEC_ELS(cache)[3];
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7074:13: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(cache)[1] = key;
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7075:13: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(cache)[2] = val;
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7076:13: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(cache)[3] = (Scheme_Object *)vpos;
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7085:17: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SCHEME_VEC_ELS(cache)[1]) {
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7090:82: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
scheme_hash_set(ht, SCHEME_VEC_ELS(cache)[1], scheme_make_raw_pair(SCHEME_VEC_ELS(cache)[2],
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7091:82: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(cache)[3]));
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7090:35: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
scheme_hash_set(ht, SCHEME_VEC_ELS(cache)[1], scheme_make_raw_pair(SCHEME_VEC_ELS(cache)[2],
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7092:15: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(cache)[1] = NULL;
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7093:15: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(cache)[2] = (Scheme_Object *)ht;
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/fun.c:7097:41: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
ht = (Scheme_Hash_Table *)SCHEME_VEC_ELS(cache)[2];
^ ~
In file included from ../../../racket/src/fun.c:32:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
40 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/future.c -o future.o
../../../racket/src/future.c:1021:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
((Scheme_Structure *)data)->slots[1] = scheme_make_integer((which+1));
^ ~
In file included from ../../../racket/src/future.c:21:
../../../racket/src/schpriv.h:721:18: note: array 'slots' declared here
Scheme_Object *slots[1];
^
../../../racket/src/future.c:1027:3: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
((Scheme_Structure *)data)->slots[2] = v;
^ ~
In file included from ../../../racket/src/future.c:21:
../../../racket/src/schpriv.h:721:18: note: array 'slots' declared here
Scheme_Object *slots[1];
^
../../../racket/src/future.c:1029:3: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
((Scheme_Structure *)data)->slots[3] = v;
^ ~
In file included from ../../../racket/src/future.c:21:
../../../racket/src/schpriv.h:721:18: note: array 'slots' declared here
Scheme_Object *slots[1];
^
3 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/gmp/gmp.c -o gmp.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/hash.c -o hash.o
../../../racket/src/hash.c:1199:17: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
procs = SCHEME_VEC_ELS(procs)[2];
^ ~
In file included from ../../../racket/src/hash.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/hash.c:1616:17: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
procs = SCHEME_VEC_ELS(procs)[3];
^ ~
In file included from ../../../racket/src/hash.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
2 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/jit.c -o jit.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/jitalloc.c -o jitalloc.o
../../../racket/src/jitalloc.c:262:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = b;
^ ~
In file included from ../../../racket/src/jitalloc.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
1 warning generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/jitarith.c -o jitarith.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/jitcall.c -o jitcall.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/jitcommon.c -o jitcommon.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/jitinline.c -o jitinline.o
../../../racket/src/jitinline.c:1286:41: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
c1 = scheme_is_constant_and_avoids_r1(app->args[1]);
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:1287:41: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
c2 = scheme_is_constant_and_avoids_r1(app->args[2]);
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:1297:21: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
scheme_generate(app->args[3], jitter, 0, 0, 0, JIT_R0, NULL);
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:1302:21: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
scheme_generate(app->args[2], jitter, 0, 0, 0, JIT_R1, NULL);
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:1304:21: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
scheme_generate(app->args[1], jitter, 0, 0, 0, JIT_R0, NULL);
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2693:42: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (scheme_can_delay_and_avoids_r1(app->args[1]))
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2698:17: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
simple = (SCHEME_INTP(app->args[2])
^~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/jitinline.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:344:31: note: instantiated from:
#define SCHEME_INTP(obj) (OBJ_TO_LONG(obj) & 0x1)
^
../../../racket/src/jitinline.c:2698:17: note: instantiated from:
simple = (SCHEME_INTP(app->args[2])
^ ~
../../../racket/src/jitinline.c:2698:29: note: instantiated from:
simple = (SCHEME_INTP(app->args[2])
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2699:7: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& (SCHEME_INT_VAL(app->args[2]) >= 0));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/jitinline.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/jitinline.c:2699:7: note: instantiated from:
&& (SCHEME_INT_VAL(app->args[2]) >= 0));
^ ~
../../../racket/src/jitinline.c:2699:22: note: instantiated from:
&& (SCHEME_INT_VAL(app->args[2]) >= 0));
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2700:52: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (simple || scheme_can_delay_and_avoids_r1(app->args[2]))
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2705:49: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
constval = scheme_can_delay_and_avoids_r1(app->args[3]);
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2708:37: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (scheme_can_unbox_inline(app->args[3], 5, JIT_FPR_NUM-3, 0))
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2710:44: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
else if (scheme_can_unbox_directly(app->args[3]))
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2748:34: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
scheme_generate_non_tail(app->args[1], jitter, 0, 1, 0); /* sync'd below */
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2758:27: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
scheme_generate_non_tail(app->args[2], jitter, 0, 1, 0); /* sync'd below */
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2772:33: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
scheme_generate_unboxed(app->args[3], jitter, flonum_arg, 0);
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2776:27: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
scheme_generate(app->args[3], jitter, 0, 0, 0, JIT_R2, NULL); /* sync'd below */
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2778:36: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
scheme_generate_non_tail(app->args[3], jitter, 0, 1, 0); /* sync'd below */
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2789:25: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
scheme_generate(app->args[1], jitter, 0, 0, 0, JIT_R0, NULL); /* sync'd below */
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2799:27: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
scheme_generate(app->args[2], jitter, 0, 0, 0, JIT_R1, NULL); /* sync'd below */
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2855:11: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
offset = SCHEME_INT_VAL(app->args[2]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/jitinline.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/jitinline.c:2855:11: note: instantiated from:
offset = SCHEME_INT_VAL(app->args[2]);
^ ~
../../../racket/src/jitinline.c:2855:26: note: instantiated from:
offset = SCHEME_INT_VAL(app->args[2]);
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2916:44: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (scheme_is_constant_and_avoids_r1(app->args[1])
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2917:47: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& scheme_is_constant_and_avoids_r1(app->args[2])) {
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2926:35: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (scheme_can_unbox_inline(app->args[3], 5, JIT_FPR_NUM-1, 1))
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2928:42: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
else if (scheme_can_unbox_directly(app->args[3]))
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2934:31: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
scheme_generate_unboxed(app->args[3], jitter, can_direct, 1);
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2940:25: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
scheme_generate(app->args[2], jitter, 0, 0, 0, JIT_R1, NULL);
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/jitinline.c:2942:25: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
scheme_generate(app->args[1], jitter, 0, 0, 0, JIT_R0, NULL);
^ ~
In file included from ../../../racket/src/jitinline.c:22:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
27 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/jitprep.c -o jitprep.o
../../../racket/src/jitprep.c:297:37: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
naya = scheme_jit_closure(orig, SCHEME_VEC_ELS(data)[1]);
^ ~
In file included from ../../../racket/src/jitprep.c:33:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/jitprep.c:631:31: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
orig_rp = (Resolve_Prefix *)SCHEME_VEC_ELS(expr)[1];
^ ~
In file included from ../../../racket/src/jitprep.c:33:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/jitprep.c:640:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(expr)[1] = (Scheme_Object *)rp;
^ ~
In file included from ../../../racket/src/jitprep.c:33:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
3 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/jitstack.c -o jitstack.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/jitstate.c -o jitstate.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/list.c -o list.o
../../../racket/src/list.c:2704:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(redirects)[1] = argv[2];
^ ~
In file included from ../../../racket/src/list.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/list.c:2705:3: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(redirects)[2] = argv[3];
^ ~
In file included from ../../../racket/src/list.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/list.c:2706:3: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(redirects)[3] = argv[4];
^ ~
In file included from ../../../racket/src/list.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
3 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/marshal.c -o marshal.o
../../../racket/src/marshal.c:648:13: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
src = SCHEME_VEC_ELS(name)[1];
^ ~
In file included from ../../../racket/src/marshal.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/marshal.c:760:7: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(tl_map)[1] = scheme_make_integer((v >> 16) & 0xFFFF);
^ ~
In file included from ../../../racket/src/marshal.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/marshal.c:1358:17: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& SCHEME_SYMBOLP(SCHEME_VEC_ELS(e)[1])))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/marshal.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:30: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/marshal.c:1358:17: note: instantiated from:
&& SCHEME_SYMBOLP(SCHEME_VEC_ELS(e)[1])))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/marshal.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/../include/scheme.h:344:31: note: instantiated from:
#define SCHEME_INTP(obj) (OBJ_TO_LONG(obj) & 0x1)
^
../../../racket/src/marshal.c:1358:17: note: instantiated from:
&& SCHEME_SYMBOLP(SCHEME_VEC_ELS(e)[1])))
^ ~
In file included from ../../../racket/src/marshal.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/marshal.c:1358:17: note: instantiated from:
&& SCHEME_SYMBOLP(SCHEME_VEC_ELS(e)[1])))
^ ~
In file included from ../../../racket/src/marshal.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/marshal.c:1358:17: note: instantiated from:
&& SCHEME_SYMBOLP(SCHEME_VEC_ELS(e)[1])))
^ ~
../../../racket/src/marshal.c:1358:32: note: instantiated from:
&& SCHEME_SYMBOLP(SCHEME_VEC_ELS(e)[1])))
^ ~
In file included from ../../../racket/src/marshal.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/marshal.c:1358:17: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& SCHEME_SYMBOLP(SCHEME_VEC_ELS(e)[1])))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/marshal.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:30: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/marshal.c:1358:17: note: instantiated from:
&& SCHEME_SYMBOLP(SCHEME_VEC_ELS(e)[1])))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/marshal.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/marshal.c:1358:17: note: instantiated from:
&& SCHEME_SYMBOLP(SCHEME_VEC_ELS(e)[1])))
^ ~
../../../racket/src/marshal.c:1358:32: note: instantiated from:
&& SCHEME_SYMBOLP(SCHEME_VEC_ELS(e)[1])))
^ ~
In file included from ../../../racket/src/marshal.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/marshal.c:1615:10: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (!SCHEME_INTP(SCHEME_VEC_ELS(e)[2])) return_NULL();
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/marshal.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:344:31: note: instantiated from:
#define SCHEME_INTP(obj) (OBJ_TO_LONG(obj) & 0x1)
^
../../../racket/src/marshal.c:1615:10: note: instantiated from:
if (!SCHEME_INTP(SCHEME_VEC_ELS(e)[2])) return_NULL();
^ ~
../../../racket/src/marshal.c:1615:22: note: instantiated from:
if (!SCHEME_INTP(SCHEME_VEC_ELS(e)[2])) return_NULL();
^ ~
In file included from ../../../racket/src/marshal.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/marshal.c:1616:10: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (!SAME_TYPE(SCHEME_TYPE(SCHEME_VEC_ELS(e)[3]), scheme_resolve_prefix_type))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/marshal.c:1616:20: note: instantiated from:
if (!SAME_TYPE(SCHEME_TYPE(SCHEME_VEC_ELS(e)[3]), scheme_resolve_prefix_type))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/marshal.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/../include/scheme.h:344:31: note: instantiated from:
#define SCHEME_INTP(obj) (OBJ_TO_LONG(obj) & 0x1)
^
../../../racket/src/marshal.c:1616:20: note: instantiated from:
if (!SAME_TYPE(SCHEME_TYPE(SCHEME_VEC_ELS(e)[3]), scheme_resolve_prefix_type))
^ ~
In file included from ../../../racket/src/marshal.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/marshal.c:1616:20: note: instantiated from:
if (!SAME_TYPE(SCHEME_TYPE(SCHEME_VEC_ELS(e)[3]), scheme_resolve_prefix_type))
^ ~
../../../racket/src/marshal.c:1616:32: note: instantiated from:
if (!SAME_TYPE(SCHEME_TYPE(SCHEME_VEC_ELS(e)[3]), scheme_resolve_prefix_type))
^ ~
In file included from ../../../racket/src/marshal.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/marshal.c:1616:10: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (!SAME_TYPE(SCHEME_TYPE(SCHEME_VEC_ELS(e)[3]), scheme_resolve_prefix_type))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/marshal.c:1616:20: note: instantiated from:
if (!SAME_TYPE(SCHEME_TYPE(SCHEME_VEC_ELS(e)[3]), scheme_resolve_prefix_type))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/marshal.c:1616:32: note: instantiated from:
if (!SAME_TYPE(SCHEME_TYPE(SCHEME_VEC_ELS(e)[3]), scheme_resolve_prefix_type))
^ ~
In file included from ../../../racket/src/marshal.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
7 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/module.c -o module.o
../../../racket/src/module.c:1613:18: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
from_modchain = SCHEME_VEC_ELS(from_modchain)[2];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:1640:18: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
from_modchain = SCHEME_VEC_ELS(from_modchain)[1];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:1644:27: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
to_modchain = SCHEME_VEC_ELS(to_modchain)[1];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:1811:23: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
from_modchain = SCHEME_VEC_ELS(from_modchain)[1];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:1815:21: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
to_modchain = SCHEME_VEC_ELS(to_modchain)[1];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:1865:21: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
from_modchain = SCHEME_VEC_ELS(from_modchain)[2];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:1867:21: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
to_modchain = SCHEME_VEC_ELS(to_modchain)[2];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:2403:7: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = midx;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:2404:7: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = exsns[i];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:2405:7: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[3] = ((i < numvals) ? scheme_true : scheme_false);
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:2406:7: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[4] = exs[i];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:2407:7: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[5] = orig_src;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:2408:7: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[6] = mark_src;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:2409:7: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[7] = (can_override ? scheme_true : scheme_false);
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:2410:7: warning: array index of '8' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[8] = exets ? scheme_make_integer(exets[i]) : scheme_false;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:2411:7: warning: array index of '9' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[9] = exinsps ? exinsps[i] : scheme_false;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:2438:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = (Scheme_Object *)res;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:2442:31: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
return (Scheme_Hash_Table *)SCHEME_VEC_ELS(vec)[1];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:3496:15: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
chain = (SCHEME_VEC_ELS(chain))[2];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:3896:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
a[1] = SCHEME_CDR(lock);
^ ~
../../../racket/src/module.c:3885:3: note: array 'a' declared here
Scheme_Object *lock, *a[1];
^
../../../racket/src/module.c:4385:17: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
let_depth = SCHEME_INT_VAL(SCHEME_VEC_ELS(e)[2]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/module.c:4385:17: note: instantiated from:
let_depth = SCHEME_INT_VAL(SCHEME_VEC_ELS(e)[2]);
^ ~
../../../racket/src/module.c:4385:32: note: instantiated from:
let_depth = SCHEME_INT_VAL(SCHEME_VEC_ELS(e)[2]);
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:4386:28: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
rp = (Resolve_Prefix *)SCHEME_VEC_ELS(e)[3];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:4387:15: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
for_stx = SCHEME_TRUEP(SCHEME_VEC_ELS(e)[4]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/module.c:4387:15: note: instantiated from:
for_stx = SCHEME_TRUEP(SCHEME_VEC_ELS(e)[4]);
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/module.c:4387:15: note: instantiated from:
for_stx = SCHEME_TRUEP(SCHEME_VEC_ELS(e)[4]);
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/module.c:4387:15: note: instantiated from:
for_stx = SCHEME_TRUEP(SCHEME_VEC_ELS(e)[4]);
^ ~
../../../racket/src/module.c:4387:28: note: instantiated from:
for_stx = SCHEME_TRUEP(SCHEME_VEC_ELS(e)[4]);
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:4388:9: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
e = SCHEME_VEC_ELS(e)[1];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:4431:31: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
menv->available_next[0] = MODCHAIN_AVAIL(menv->modchain, 0);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/module.c:265:31: note: instantiated from:
#define MODCHAIN_AVAIL(p, n) (SCHEME_VEC_ELS(p)[3+n])
^ ~~~~~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:4432:5: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
MODCHAIN_AVAIL(menv->modchain, 0) = (Scheme_Object *)menv;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/module.c:265:31: note: instantiated from:
#define MODCHAIN_AVAIL(p, n) (SCHEME_VEC_ELS(p)[3+n])
^ ~~~~~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:4435:31: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
menv->available_next[1] = MODCHAIN_AVAIL(menv->modchain, 1);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/module.c:265:31: note: instantiated from:
#define MODCHAIN_AVAIL(p, n) (SCHEME_VEC_ELS(p)[3+n])
^ ~~~~~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:4436:5: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
MODCHAIN_AVAIL(menv->modchain, 1) = (Scheme_Object *)menv;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/module.c:265:31: note: instantiated from:
#define MODCHAIN_AVAIL(p, n) (SCHEME_VEC_ELS(p)[3+n])
^ ~~~~~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5350:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec2)[1] = naya;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5351:3: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec2)[3] = (Scheme_Object *)rp;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5366:35: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
orig_rp = (Resolve_Prefix *)SCHEME_VEC_ELS(orig)[3];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5368:14: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
orig = SCHEME_VEC_ELS(orig)[1];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5396:37: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
orig_rp = (Resolve_Prefix *)SCHEME_VEC_ELS(orig)[3];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5398:16: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
orig = SCHEME_VEC_ELS(orig)[1];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5682:14: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& SCHEME_SYMBOLP(SCHEME_VEC_ELS(pv)[1]))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:30: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/module.c:5682:14: note: instantiated from:
&& SCHEME_SYMBOLP(SCHEME_VEC_ELS(pv)[1]))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/../include/scheme.h:344:31: note: instantiated from:
#define SCHEME_INTP(obj) (OBJ_TO_LONG(obj) & 0x1)
^
../../../racket/src/module.c:5682:14: note: instantiated from:
&& SCHEME_SYMBOLP(SCHEME_VEC_ELS(pv)[1]))
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/module.c:5682:14: note: instantiated from:
&& SCHEME_SYMBOLP(SCHEME_VEC_ELS(pv)[1]))
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/module.c:5682:14: note: instantiated from:
&& SCHEME_SYMBOLP(SCHEME_VEC_ELS(pv)[1]))
^ ~
../../../racket/src/module.c:5682:29: note: instantiated from:
&& SCHEME_SYMBOLP(SCHEME_VEC_ELS(pv)[1]))
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5682:14: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& SCHEME_SYMBOLP(SCHEME_VEC_ELS(pv)[1]))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:30: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/module.c:5682:14: note: instantiated from:
&& SCHEME_SYMBOLP(SCHEME_VEC_ELS(pv)[1]))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/module.c:5682:14: note: instantiated from:
&& SCHEME_SYMBOLP(SCHEME_VEC_ELS(pv)[1]))
^ ~
../../../racket/src/module.c:5682:29: note: instantiated from:
&& SCHEME_SYMBOLP(SCHEME_VEC_ELS(pv)[1]))
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5811:38: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
required = (Scheme_Hash_Table *)(SCHEME_VEC_ELS(tvec)[1]);
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5812:38: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
syntax = (Scheme_Bucket_Table *)(SCHEME_VEC_ELS(tvec)[2]);
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5839:30: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (same_resolved_modidx(SCHEME_VEC_ELS(vec)[1], modidx)
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5840:5: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& SAME_OBJ(SCHEME_VEC_ELS(vec)[2], exname)) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/module.c:5840:5: note: instantiated from:
&& SAME_OBJ(SCHEME_VEC_ELS(vec)[2], exname)) {
^ ~
../../../racket/src/module.c:5840:14: note: instantiated from:
&& SAME_OBJ(SCHEME_VEC_ELS(vec)[2], exname)) {
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5845:7: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[7] = scheme_false;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5849:9: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[7])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/module.c:5849:9: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[7])) {
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/module.c:5849:9: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[7])) {
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/module.c:5849:9: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[7])) {
^ ~
../../../racket/src/module.c:5849:22: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[7])) {
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5854:11: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[5])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/module.c:5854:11: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[5])) {
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/module.c:5854:11: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[5])) {
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/module.c:5854:11: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[5])) {
^ ~
../../../racket/src/module.c:5854:24: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[5])) {
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5855:33: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
srcs = scheme_make_pair(SCHEME_VEC_ELS(vec)[5], srcs);
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5858:73: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
fromsrc = scheme_write_to_string_w_max(scheme_syntax_to_datum(SCHEME_VEC_ELS(vec)[5], 0, NULL),
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5889:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = modidx;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5890:3: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = exname;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5891:3: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[3] = (isval ? scheme_true : scheme_false);
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5892:3: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[4] = prnt_name;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5893:3: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[5] = (err_src ? err_src : scheme_false);
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5894:3: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[6] = (mark_src ? mark_src : scheme_false);
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5895:3: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[7] = scheme_false;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5896:3: warning: array index of '8' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[8] = scheme_make_integer(exet);
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5897:3: warning: array index of '9' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[9] = in_insp;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5907:9: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[7])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/module.c:5907:9: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[7])) {
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/module.c:5907:9: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[7])) {
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/module.c:5907:9: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[7])) {
^ ~
../../../racket/src/module.c:5907:22: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[7])) {
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5957:17: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
self_modidx = SCHEME_VEC_ELS(data)[1];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:5958:8: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
rn = SCHEME_VEC_ELS(data)[2];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:6158:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = (Scheme_Object *)required;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:6159:5: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = (Scheme_Object *)env->genv->syntax;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:6164:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = (Scheme_Object *)et_required;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:6165:5: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = NULL;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:6537:4: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = m;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:6538:11: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = scheme_make_integer(max_let_depth);
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:6539:4: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[3] = (Scheme_Object *)rp;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:6540:4: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[4] = (for_stx ? scheme_true : scheme_false);
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:6639:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(lift_data)[1] = self_modidx;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:6640:3: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(lift_data)[2] = rn;
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:7096:49: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
required = (Scheme_Hash_Table *)SCHEME_VEC_ELS(tvec)[1];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:7142:43: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
required = (Scheme_Hash_Table *)SCHEME_VEC_ELS(tvec)[1];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:7152:24: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
modidx = SCHEME_VEC_ELS(required->vals[i])[1];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:7153:25: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
srcname = SCHEME_VEC_ELS(required->vals[i])[2];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:7154:25: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
outname = SCHEME_VEC_ELS(required->vals[i])[4];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:7155:26: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
mark_src = SCHEME_VEC_ELS(required->vals[i])[6];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:7710:17: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SCHEME_TRUEP(SCHEME_VEC_ELS(v)[3])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/module.c:7710:17: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(v)[3])) {
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/module.c:7710:17: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(v)[3])) {
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/module.c:7710:17: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(v)[3])) {
^ ~
../../../racket/src/module.c:7710:30: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(v)[3])) {
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:7713:30: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
exsns[count] = SCHEME_VEC_ELS(v)[2];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:7714:29: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
exss[count] = SCHEME_VEC_ELS(v)[1];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:7715:52: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
noms = adjust_for_rename(exs[count], SCHEME_VEC_ELS(v)[4], SCHEME_VEC_ELS(v)[0]);
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:7718:19: warning: array index of '8' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SAME_OBJ(SCHEME_VEC_ELS(v)[8], scheme_make_integer(1)))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/module.c:7718:19: note: instantiated from:
if (SAME_OBJ(SCHEME_VEC_ELS(v)[8], scheme_make_integer(1)))
^ ~
../../../racket/src/module.c:7718:28: note: instantiated from:
if (SAME_OBJ(SCHEME_VEC_ELS(v)[8], scheme_make_integer(1)))
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:7720:19: warning: array index of '9' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SCHEME_TRUEP(SCHEME_VEC_ELS(v)[9]))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/module.c:7720:19: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(v)[9]))
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/module.c:7720:19: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(v)[9]))
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/module.c:7720:19: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(v)[9]))
^ ~
../../../racket/src/module.c:7720:32: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(v)[9]))
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:7721:34: warning: array index of '9' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
exinsps[count] = SCHEME_VEC_ELS(v)[9];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:7778:17: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SCHEME_FALSEP(SCHEME_VEC_ELS(v)[3])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/module.c:7778:17: note: instantiated from:
if (SCHEME_FALSEP(SCHEME_VEC_ELS(v)[3])) {
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/module.c:7778:17: note: instantiated from:
if (SCHEME_FALSEP(SCHEME_VEC_ELS(v)[3])) {
^ ~
../../../racket/src/module.c:7778:31: note: instantiated from:
if (SCHEME_FALSEP(SCHEME_VEC_ELS(v)[3])) {
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:7781:30: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
exsns[count] = SCHEME_VEC_ELS(v)[2];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:7782:29: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
exss[count] = SCHEME_VEC_ELS(v)[1];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:7783:52: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
noms = adjust_for_rename(exs[count], SCHEME_VEC_ELS(v)[4], SCHEME_VEC_ELS(v)[0]);
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:7786:19: warning: array index of '9' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SCHEME_TRUEP(SCHEME_VEC_ELS(v)[9]))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/module.c:7786:19: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(v)[9]))
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/module.c:7786:19: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(v)[9]))
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/module.c:7786:19: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(v)[9]))
^ ~
../../../racket/src/module.c:7786:32: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(v)[9]))
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/module.c:7787:34: warning: array index of '9' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
exinsps[count] = SCHEME_VEC_ELS(v)[9];
^ ~
In file included from ../../../racket/src/module.c:27:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
86 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/mzrt.c -o mzrt.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/network.c -o network.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/numarith.c -o numarith.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/number.c -o number.o
../../../racket/src/number.c:2605:12: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((d == 0.0)
~~^~~~~~
../../../racket/src/number.c:2605:12: note: use '=' to turn this equality comparison into an assignment
if ((d == 0.0)
^~
=
../../../racket/src/number.c:2605:12: note: remove extraneous parentheses around the comparison to silence this
warning
if ((d == 0.0)
~ ^ ~
1 warning generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/numcomp.c -o numcomp.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/numstr.c -o numstr.o
In file included from ../../../racket/src/numstr.c:2204:
../../../racket/src/newrandom.inc:97:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
REF(s->x11, 1, Im1)
^~~~~~~~~~~~~~~~~~~
../../../racket/src/newrandom.inc:88:38: note: instantiated from:
if (!scheme_get_unsigned_int_val(SCHEME_VEC_ELS(vec)[i], &l)) \
^
In file included from ../../../racket/src/numstr.c:33:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
In file included from ../../../racket/src/numstr.c:2204:
../../../racket/src/newrandom.inc:98:3: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
REF(s->x12, 2, Im1)
^~~~~~~~~~~~~~~~~~~
../../../racket/src/newrandom.inc:88:38: note: instantiated from:
if (!scheme_get_unsigned_int_val(SCHEME_VEC_ELS(vec)[i], &l)) \
^
In file included from ../../../racket/src/numstr.c:33:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
In file included from ../../../racket/src/numstr.c:2204:
../../../racket/src/newrandom.inc:99:3: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
REF(s->x20, 3, Im2)
^~~~~~~~~~~~~~~~~~~
../../../racket/src/newrandom.inc:88:38: note: instantiated from:
if (!scheme_get_unsigned_int_val(SCHEME_VEC_ELS(vec)[i], &l)) \
^
In file included from ../../../racket/src/numstr.c:33:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
In file included from ../../../racket/src/numstr.c:2204:
../../../racket/src/newrandom.inc:100:3: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
REF(s->x21, 4, Im2)
^~~~~~~~~~~~~~~~~~~
../../../racket/src/newrandom.inc:88:38: note: instantiated from:
if (!scheme_get_unsigned_int_val(SCHEME_VEC_ELS(vec)[i], &l)) \
^
In file included from ../../../racket/src/numstr.c:33:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
In file included from ../../../racket/src/numstr.c:2204:
../../../racket/src/newrandom.inc:101:3: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
REF(s->x22, 5, Im2)
^~~~~~~~~~~~~~~~~~~
../../../racket/src/newrandom.inc:88:38: note: instantiated from:
if (!scheme_get_unsigned_int_val(SCHEME_VEC_ELS(vec)[i], &l)) \
^
In file included from ../../../racket/src/numstr.c:33:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
In file included from ../../../racket/src/numstr.c:2204:
../../../racket/src/newrandom.inc:128:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SET(1, s->x11)
^~~~~~~~~~~~~~
../../../racket/src/newrandom.inc:124:5: note: instantiated from:
SCHEME_VEC_ELS(result)[i] = o; \
^
In file included from ../../../racket/src/numstr.c:33:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
In file included from ../../../racket/src/numstr.c:2204:
../../../racket/src/newrandom.inc:129:3: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SET(2, s->x12)
^~~~~~~~~~~~~~
../../../racket/src/newrandom.inc:124:5: note: instantiated from:
SCHEME_VEC_ELS(result)[i] = o; \
^
In file included from ../../../racket/src/numstr.c:33:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
In file included from ../../../racket/src/numstr.c:2204:
../../../racket/src/newrandom.inc:130:3: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SET(3, s->x20)
^~~~~~~~~~~~~~
../../../racket/src/newrandom.inc:124:5: note: instantiated from:
SCHEME_VEC_ELS(result)[i] = o; \
^
In file included from ../../../racket/src/numstr.c:33:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
In file included from ../../../racket/src/numstr.c:2204:
../../../racket/src/newrandom.inc:131:3: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SET(4, s->x21)
^~~~~~~~~~~~~~
../../../racket/src/newrandom.inc:124:5: note: instantiated from:
SCHEME_VEC_ELS(result)[i] = o; \
^
In file included from ../../../racket/src/numstr.c:33:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
In file included from ../../../racket/src/numstr.c:2204:
../../../racket/src/newrandom.inc:132:3: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SET(5, s->x22)
^~~~~~~~~~~~~~
../../../racket/src/newrandom.inc:124:5: note: instantiated from:
SCHEME_VEC_ELS(result)[i] = o; \
^
In file included from ../../../racket/src/numstr.c:33:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
10 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/optimize.c -o optimize.o
../../../racket/src/optimize.c:256:14: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((vtype == scheme_compiled_quote_syntax_type)) {
~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/optimize.c:256:14: note: use '=' to turn this equality comparison into an assignment
if ((vtype == scheme_compiled_quote_syntax_type)) {
^~
=
../../../racket/src/optimize.c:256:14: note: remove extraneous parentheses around the comparison to silence this
warning
if ((vtype == scheme_compiled_quote_syntax_type)) {
~ ^ ~
../../../racket/src/optimize.c:261:14: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((vtype == scheme_branch_type)) {
~~~~~~^~~~~~~~~~~~~~~~~~~~~
../../../racket/src/optimize.c:261:14: note: use '=' to turn this equality comparison into an assignment
if ((vtype == scheme_branch_type)) {
^~
=
../../../racket/src/optimize.c:261:14: note: remove extraneous parentheses around the comparison to silence this
warning
if ((vtype == scheme_branch_type)) {
~ ^ ~
../../../racket/src/optimize.c:279:14: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((vtype == scheme_let_one_type)) {
~~~~~~^~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/optimize.c:279:14: note: use '=' to turn this equality comparison into an assignment
if ((vtype == scheme_let_one_type)) {
^~
=
../../../racket/src/optimize.c:279:14: note: remove extraneous parentheses around the comparison to silence this
warning
if ((vtype == scheme_let_one_type)) {
~ ^ ~
../../../racket/src/optimize.c:285:14: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((vtype == scheme_let_void_type)) {
~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/optimize.c:285:14: note: use '=' to turn this equality comparison into an assignment
if ((vtype == scheme_let_void_type)) {
^~
=
../../../racket/src/optimize.c:285:14: note: remove extraneous parentheses around the comparison to silence this
warning
if ((vtype == scheme_let_void_type)) {
~ ^ ~
../../../racket/src/optimize.c:304:14: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((vtype == scheme_compiled_let_void_type)) {
~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/optimize.c:304:14: note: use '=' to turn this equality comparison into an assignment
if ((vtype == scheme_compiled_let_void_type)) {
^~
=
../../../racket/src/optimize.c:304:14: note: remove extraneous parentheses around the comparison to silence this
warning
if ((vtype == scheme_compiled_let_void_type)) {
~ ^ ~
../../../racket/src/optimize.c:319:14: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((vtype == scheme_letrec_type)) {
~~~~~~^~~~~~~~~~~~~~~~~~~~~
../../../racket/src/optimize.c:319:14: note: use '=' to turn this equality comparison into an assignment
if ((vtype == scheme_letrec_type)) {
^~
=
../../../racket/src/optimize.c:319:14: note: remove extraneous parentheses around the comparison to silence this
warning
if ((vtype == scheme_letrec_type)) {
~ ^ ~
../../../racket/src/optimize.c:324:14: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((vtype == scheme_application_type)) {
~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/optimize.c:324:14: note: use '=' to turn this equality comparison into an assignment
if ((vtype == scheme_application_type)) {
^~
=
../../../racket/src/optimize.c:324:14: note: remove extraneous parentheses around the comparison to silence this
warning
if ((vtype == scheme_application_type)) {
~ ^ ~
../../../racket/src/optimize.c:399:14: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((vtype == scheme_application2_type)) {
~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/optimize.c:399:14: note: use '=' to turn this equality comparison into an assignment
if ((vtype == scheme_application2_type)) {
^~
=
../../../racket/src/optimize.c:399:14: note: remove extraneous parentheses around the comparison to silence this
warning
if ((vtype == scheme_application2_type)) {
~ ^ ~
../../../racket/src/optimize.c:430:14: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((vtype == scheme_application3_type)) {
~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/optimize.c:430:14: note: use '=' to turn this equality comparison into an assignment
if ((vtype == scheme_application3_type)) {
^~
=
../../../racket/src/optimize.c:430:14: note: remove extraneous parentheses around the comparison to silence this
warning
if ((vtype == scheme_application3_type)) {
~ ^ ~
../../../racket/src/optimize.c:333:13: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SCHEME_SYMBOLP(app->args[1])
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:30: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/optimize.c:333:13: note: instantiated from:
if (SCHEME_SYMBOLP(app->args[1])
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/../include/scheme.h:344:31: note: instantiated from:
#define SCHEME_INTP(obj) (OBJ_TO_LONG(obj) & 0x1)
^
../../../racket/src/optimize.c:333:13: note: instantiated from:
if (SCHEME_SYMBOLP(app->args[1])
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/optimize.c:333:13: note: instantiated from:
if (SCHEME_SYMBOLP(app->args[1])
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/optimize.c:333:13: note: instantiated from:
if (SCHEME_SYMBOLP(app->args[1])
^ ~
../../../racket/src/optimize.c:333:28: note: instantiated from:
if (SCHEME_SYMBOLP(app->args[1])
^ ~
In file included from ../../../racket/src/optimize.c:30:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/optimize.c:333:13: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SCHEME_SYMBOLP(app->args[1])
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:30: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/optimize.c:333:13: note: instantiated from:
if (SCHEME_SYMBOLP(app->args[1])
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/optimize.c:333:13: note: instantiated from:
if (SCHEME_SYMBOLP(app->args[1])
^ ~
../../../racket/src/optimize.c:333:28: note: instantiated from:
if (SCHEME_SYMBOLP(app->args[1])
^ ~
In file included from ../../../racket/src/optimize.c:30:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/optimize.c:334:16: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& SCHEME_FALSEP(app->args[2])
^~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/optimize.c:334:16: note: instantiated from:
&& SCHEME_FALSEP(app->args[2])
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/optimize.c:334:16: note: instantiated from:
&& SCHEME_FALSEP(app->args[2])
^ ~
../../../racket/src/optimize.c:334:30: note: instantiated from:
&& SCHEME_FALSEP(app->args[2])
^ ~
In file included from ../../../racket/src/optimize.c:30:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/optimize.c:335:16: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& SCHEME_INTP(app->args[3])
^~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:344:31: note: instantiated from:
#define SCHEME_INTP(obj) (OBJ_TO_LONG(obj) & 0x1)
^
../../../racket/src/optimize.c:335:16: note: instantiated from:
&& SCHEME_INTP(app->args[3])
^ ~
../../../racket/src/optimize.c:335:28: note: instantiated from:
&& SCHEME_INTP(app->args[3])
^ ~
In file included from ../../../racket/src/optimize.c:30:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/optimize.c:336:17: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& (SCHEME_INT_VAL(app->args[3]) >= 0)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/optimize.c:336:17: note: instantiated from:
&& (SCHEME_INT_VAL(app->args[3]) >= 0)
^ ~
../../../racket/src/optimize.c:336:32: note: instantiated from:
&& (SCHEME_INT_VAL(app->args[3]) >= 0)
^ ~
In file included from ../../../racket/src/optimize.c:30:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/optimize.c:337:16: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& SCHEME_INTP(app->args[4])
^~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:344:31: note: instantiated from:
#define SCHEME_INTP(obj) (OBJ_TO_LONG(obj) & 0x1)
^
../../../racket/src/optimize.c:337:16: note: instantiated from:
&& SCHEME_INTP(app->args[4])
^ ~
../../../racket/src/optimize.c:337:28: note: instantiated from:
&& SCHEME_INTP(app->args[4])
^ ~
In file included from ../../../racket/src/optimize.c:30:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/optimize.c:338:17: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& (SCHEME_INT_VAL(app->args[4]) >= 0)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/optimize.c:338:17: note: instantiated from:
&& (SCHEME_INT_VAL(app->args[4]) >= 0)
^ ~
../../../racket/src/optimize.c:338:32: note: instantiated from:
&& (SCHEME_INT_VAL(app->args[4]) >= 0)
^ ~
In file included from ../../../racket/src/optimize.c:30:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/optimize.c:340:42: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
|| scheme_omittable_expr(app->args[5], 1, fuel - 1, resolved, warn_info,
^ ~
In file included from ../../../racket/src/optimize.c:30:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/optimize.c:343:20: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
|| SCHEME_NULLP(app->args[6]))
^~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:409:30: note: instantiated from:
#define SCHEME_NULLP(obj) SAME_OBJ(obj, scheme_null)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/optimize.c:343:20: note: instantiated from:
|| SCHEME_NULLP(app->args[6]))
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:409:30: note: instantiated from:
#define SCHEME_NULLP(obj) SAME_OBJ(obj, scheme_null)
^
../../../racket/src/optimize.c:343:20: note: instantiated from:
|| SCHEME_NULLP(app->args[6]))
^ ~
../../../racket/src/optimize.c:343:33: note: instantiated from:
|| SCHEME_NULLP(app->args[6]))
^ ~
In file included from ../../../racket/src/optimize.c:30:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/optimize.c:345:20: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
|| SCHEME_FALSEP(app->args[7])
^~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/optimize.c:345:20: note: instantiated from:
|| SCHEME_FALSEP(app->args[7])
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/optimize.c:345:20: note: instantiated from:
|| SCHEME_FALSEP(app->args[7])
^ ~
../../../racket/src/optimize.c:345:34: note: instantiated from:
|| SCHEME_FALSEP(app->args[7])
^ ~
In file included from ../../../racket/src/optimize.c:30:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/optimize.c:346:46: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
|| is_current_inspector_call(app->args[7]))
^ ~
In file included from ../../../racket/src/optimize.c:30:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/optimize.c:348:20: warning: array index of '8' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
|| SCHEME_FALSEP(app->args[8])
^~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/optimize.c:348:20: note: instantiated from:
|| SCHEME_FALSEP(app->args[8])
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/optimize.c:348:20: note: instantiated from:
|| SCHEME_FALSEP(app->args[8])
^ ~
../../../racket/src/optimize.c:348:34: note: instantiated from:
|| SCHEME_FALSEP(app->args[8])
^ ~
In file included from ../../../racket/src/optimize.c:30:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/optimize.c:349:38: warning: array index of '8' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
|| is_proc_spec_proc(app->args[8]))
^ ~
In file included from ../../../racket/src/optimize.c:30:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/optimize.c:351:20: warning: array index of '9' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
|| SCHEME_NULLP(app->args[9]))) {
^~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:409:30: note: instantiated from:
#define SCHEME_NULLP(obj) SAME_OBJ(obj, scheme_null)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/optimize.c:351:20: note: instantiated from:
|| SCHEME_NULLP(app->args[9]))) {
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:409:30: note: instantiated from:
#define SCHEME_NULLP(obj) SAME_OBJ(obj, scheme_null)
^
../../../racket/src/optimize.c:351:20: note: instantiated from:
|| SCHEME_NULLP(app->args[9]))) {
^ ~
../../../racket/src/optimize.c:351:33: note: instantiated from:
|| SCHEME_NULLP(app->args[9]))) {
^ ~
In file included from ../../../racket/src/optimize.c:30:
../../../racket/src/schpriv.h:1079:18: note: array 'args' declared here
Scheme_Object *args[1];
^
../../../racket/src/optimize.c:1140:37: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_TRUEP(SCHEME_VEC_ELS(name)[6]));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/optimize.c:1140:37: note: instantiated from:
SCHEME_TRUEP(SCHEME_VEC_ELS(name)[6]));
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/optimize.c:1140:37: note: instantiated from:
SCHEME_TRUEP(SCHEME_VEC_ELS(name)[6]));
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/optimize.c:1140:37: note: instantiated from:
SCHEME_TRUEP(SCHEME_VEC_ELS(name)[6]));
^ ~
../../../racket/src/optimize.c:1140:50: note: instantiated from:
SCHEME_TRUEP(SCHEME_VEC_ELS(name)[6]));
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/optimize.c:1138:37: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(name)[1], SCHEME_VEC_ELS(name)[2],
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/optimize.c:1138:62: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(name)[1], SCHEME_VEC_ELS(name)[2],
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/optimize.c:1139:37: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(name)[3], SCHEME_VEC_ELS(name)[4],
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/optimize.c:1139:62: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(name)[3], SCHEME_VEC_ELS(name)[4],
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/optimize.c:2591:24: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
Scheme_Object *val = SCHEME_VEC_ELS(data)[1];
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/optimize.c:2597:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(data)[1] = val;
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/optimize.c:2880:9: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
val = SCHEME_VEC_ELS(data)[3];
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/optimize.c:2888:3: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(data)[3] = val;
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/optimize.c:4402:15: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
e = SCHEME_VEC_ELS(e)[1];
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/optimize.c:4441:14: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
e2 = SCHEME_VEC_ELS(e2)[1];
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/optimize.c:4469:6: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
e = SCHEME_VEC_ELS(e)[1];
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/optimize.c:4609:19: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
e = SCHEME_VEC_ELS(e)[1];
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/optimize.c:5512:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(p)[1] = scheme_make_integer(pos);
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/optimize.c:5513:3: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(p)[2] = value;
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/optimize.c:5514:3: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(p)[3] = (single_use ? scheme_true : scheme_false);
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/optimize.c:5680:9: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
n = SCHEME_VEC_ELS(p)[1];
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/optimize.c:5682:11: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
n = SCHEME_VEC_ELS(p)[2];
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/optimize.c:5699:23: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
*single_use = SCHEME_TRUEP(SCHEME_VEC_ELS(p)[3]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/optimize.c:5699:23: note: instantiated from:
*single_use = SCHEME_TRUEP(SCHEME_VEC_ELS(p)[3]);
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/optimize.c:5699:23: note: instantiated from:
*single_use = SCHEME_TRUEP(SCHEME_VEC_ELS(p)[3]);
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/optimize.c:5699:23: note: instantiated from:
*single_use = SCHEME_TRUEP(SCHEME_VEC_ELS(p)[3]);
^ ~
../../../racket/src/optimize.c:5699:36: note: instantiated from:
*single_use = SCHEME_TRUEP(SCHEME_VEC_ELS(p)[3]);
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/optimize.c:5752:31: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
disrupt_single_use = !SCHEME_TRUEP(SCHEME_VEC_ELS(p)[3]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/optimize.c:5752:31: note: instantiated from:
disrupt_single_use = !SCHEME_TRUEP(SCHEME_VEC_ELS(p)[3]);
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/optimize.c:5752:31: note: instantiated from:
disrupt_single_use = !SCHEME_TRUEP(SCHEME_VEC_ELS(p)[3]);
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/optimize.c:5752:31: note: instantiated from:
disrupt_single_use = !SCHEME_TRUEP(SCHEME_VEC_ELS(p)[3]);
^ ~
../../../racket/src/optimize.c:5752:44: note: instantiated from:
disrupt_single_use = !SCHEME_TRUEP(SCHEME_VEC_ELS(p)[3]);
^ ~
In file included from ../../../racket/src/optimize.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
43 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/place.c -o place.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/port.c -o port.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/portfun.c -o portfun.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/print.c -o print.o
../../../racket/src/print.c:2327:22: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
name = ((Scheme_Structure *)obj)->slots[2];
^ ~
In file included from ../../../racket/src/print.c:26:
../../../racket/src/schpriv.h:721:18: note: array 'slots' declared here
Scheme_Object *slots[1];
^
../../../racket/src/print.c:3823:56: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
Scheme_Marshal_Tables *mt = (Scheme_Marshal_Tables *)SCHEME_VEC_ELS(_vec)[1];
^ ~
In file included from ../../../racket/src/print.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/print.c:3824:46: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
PrintParams * volatile pp = (PrintParams *)SCHEME_VEC_ELS(_vec)[2], *sub_pp;
^ ~
In file included from ../../../racket/src/print.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/print.c:3837:7: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SCHEME_VEC_ELS(_vec)[3]) {
^ ~
In file included from ../../../racket/src/print.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/print.c:3853:7: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
sp = SCHEME_VEC_ELS(_vec)[4];
^ ~
In file included from ../../../racket/src/print.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/print.c:3857:27: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
((Scheme_Output_Port *)SCHEME_VEC_ELS(_vec)[5])->port_data = sp;
^ ~
In file included from ../../../racket/src/print.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/print.c:3858:4: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(_vec)[4] = sp;
^ ~
In file included from ../../../racket/src/print.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/print.c:3962:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = (Scheme_Object *)mt;
^ ~
In file included from ../../../racket/src/print.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/print.c:3963:3: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = (Scheme_Object *)pp;
^ ~
In file included from ../../../racket/src/print.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/print.c:3964:3: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[3] = scheme_true;
^ ~
In file included from ../../../racket/src/print.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/print.c:3965:3: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[4] = (pp->print_port ? NULL : orig_port);
^ ~
In file included from ../../../racket/src/print.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/print.c:3966:3: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[5] = o;
^ ~
In file included from ../../../racket/src/print.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/print.c:4003:3: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[3] = NULL;
^ ~
In file included from ../../../racket/src/print.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/print.c:4007:26: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
flush_from_byte_port(SCHEME_VEC_ELS(vec)[4], orig_pp);
^ ~
In file included from ../../../racket/src/print.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
14 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/rational.c -o rational.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/read.c -o read.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/regexp.c -o regexp.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/resolve.c -o resolve.o
../../../racket/src/resolve.c:155:9: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = old_rator;
^ ~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/resolve.c:156:9: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = arity;
^ ~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/resolve.c:294:15: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
loc = SCHEME_VEC_ELS(additions)[1];
^ ~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/resolve.c:569:24: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
Scheme_Object *val = SCHEME_VEC_ELS(data)[1], *vec;
^ ~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/resolve.c:606:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = var;
^ ~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/resolve.c:720:11: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
dummy = SCHEME_VEC_ELS(data)[1];
^ ~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/resolve.c:721:11: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
names = SCHEME_VEC_ELS(data)[2];
^ ~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/resolve.c:722:9: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
val = SCHEME_VEC_ELS(data)[3];
^ ~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/resolve.c:742:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = (Scheme_Object *)rp;
^ ~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/resolve.c:743:3: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = base_stack_depth;
^ ~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/resolve.c:744:3: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[3] = dummy;
^ ~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/resolve.c:845:11: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SAME_TYPE(SCHEME_TYPE(((Scheme_Sequence *)expr)->array[1]), scheme_application_type)) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/resolve.c:845:21: note: instantiated from:
if (SAME_TYPE(SCHEME_TYPE(((Scheme_Sequence *)expr)->array[1]), scheme_application_type)) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/../include/scheme.h:344:31: note: instantiated from:
#define SCHEME_INTP(obj) (OBJ_TO_LONG(obj) & 0x1)
^
../../../racket/src/resolve.c:845:21: note: instantiated from:
if (SAME_TYPE(SCHEME_TYPE(((Scheme_Sequence *)expr)->array[1]), scheme_application_type)) {
^ ~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/resolve.c:845:21: note: instantiated from:
if (SAME_TYPE(SCHEME_TYPE(((Scheme_Sequence *)expr)->array[1]), scheme_application_type)) {
^ ~
../../../racket/src/resolve.c:845:33: note: instantiated from:
if (SAME_TYPE(SCHEME_TYPE(((Scheme_Sequence *)expr)->array[1]), scheme_application_type)) {
^ ~
In file included from ../../../racket/src/resolve.c:36:
../../../racket/src/schpriv.h:1260:18: note: array 'array' declared here
Scheme_Object *array[1];
^
../../../racket/src/resolve.c:845:11: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SAME_TYPE(SCHEME_TYPE(((Scheme_Sequence *)expr)->array[1]), scheme_application_type)) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/resolve.c:845:21: note: instantiated from:
if (SAME_TYPE(SCHEME_TYPE(((Scheme_Sequence *)expr)->array[1]), scheme_application_type)) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/resolve.c:845:33: note: instantiated from:
if (SAME_TYPE(SCHEME_TYPE(((Scheme_Sequence *)expr)->array[1]), scheme_application_type)) {
^ ~
In file included from ../../../racket/src/resolve.c:36:
../../../racket/src/schpriv.h:1260:18: note: array 'array' declared here
Scheme_Object *array[1];
^
../../../racket/src/resolve.c:846:32: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (((Scheme_App_Rec *)((Scheme_Sequence *)expr)->array[1])->num_args == 0) {
^ ~
In file included from ../../../racket/src/resolve.c:36:
../../../racket/src/schpriv.h:1260:18: note: array 'array' declared here
Scheme_Object *array[1];
^
../../../racket/src/resolve.c:847:15: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SAME_OBJ(scheme_values_func, ((Scheme_App_Rec *)((Scheme_Sequence *)expr)->array[1])->args[0])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/resolve.c:847:15: note: instantiated from:
if (SAME_OBJ(scheme_values_func, ((Scheme_App_Rec *)((Scheme_Sequence *)expr)->array[1])->args[0])) {
^ ~
../../../racket/src/resolve.c:847:63: note: instantiated from:
if (SAME_OBJ(scheme_values_func, ((Scheme_App_Rec *)((Scheme_Sequence *)expr)->array[1])->args[0])) {
^ ~
In file included from ../../../racket/src/resolve.c:36:
../../../racket/src/schpriv.h:1260:18: note: array 'array' declared here
Scheme_Object *array[1];
^
../../../racket/src/resolve.c:1413:13: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
((Scheme_Sequence *)last_seq)->array[1] = expr;
^ ~
In file included from ../../../racket/src/resolve.c:36:
../../../racket/src/schpriv.h:1260:18: note: array 'array' declared here
Scheme_Object *array[1];
^
../../../racket/src/resolve.c:1428:13: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
((Scheme_Sequence *)last_seq)->array[1] = (Scheme_Object *)lv;
^ ~
In file included from ../../../racket/src/resolve.c:36:
../../../racket/src/schpriv.h:1260:18: note: array 'array' declared here
Scheme_Object *array[1];
^
../../../racket/src/resolve.c:1463:19: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
((Scheme_Sequence *)last_seq)->array[1] = boxenv;
^ ~
In file included from ../../../racket/src/resolve.c:36:
../../../racket/src/schpriv.h:1260:18: note: array 'array' declared here
Scheme_Object *array[1];
^
../../../racket/src/resolve.c:1502:7: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
((Scheme_Sequence *)last_seq)->array[1] = (Scheme_Object *)letrec;
^ ~
In file included from ../../../racket/src/resolve.c:36:
../../../racket/src/schpriv.h:1260:18: note: array 'array' declared here
Scheme_Object *array[1];
^
../../../racket/src/resolve.c:1510:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
((Scheme_Sequence *)last_seq)->array[1] = (Scheme_Object *)body;
^ ~
In file included from ../../../racket/src/resolve.c:36:
../../../racket/src/schpriv.h:1260:18: note: array 'array' declared here
Scheme_Object *array[1];
^
../../../racket/src/resolve.c:2109:19: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
rp->num_lifts = SCHEME_INT_VAL(SCHEME_VEC_ELS(lift_vec)[1]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/resolve.c:2109:19: note: instantiated from:
rp->num_lifts = SCHEME_INT_VAL(SCHEME_VEC_ELS(lift_vec)[1]);
^ ~
../../../racket/src/resolve.c:2109:34: note: instantiated from:
rp->num_lifts = SCHEME_INT_VAL(SCHEME_VEC_ELS(lift_vec)[1]);
^ ~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/resolve.c:2402:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(lift_vec)[1] = scheme_make_integer(0);
^ ~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/resolve.c:2413:7: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
n = SCHEME_INT_VAL(SCHEME_VEC_ELS(lift_vec)[1]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/resolve.c:2413:7: note: instantiated from:
n = SCHEME_INT_VAL(SCHEME_VEC_ELS(lift_vec)[1]);
^ ~
../../../racket/src/resolve.c:2413:22: note: instantiated from:
n = SCHEME_INT_VAL(SCHEME_VEC_ELS(lift_vec)[1]);
^ ~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/resolve.c:2856:11: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
count = SCHEME_VEC_ELS(info->lifts)[1];
^ ~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/resolve.c:2862:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(info->lifts)[1] = count;
^ ~
In file included from ../../../racket/src/resolve.c:36:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
25 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/sema.c -o sema.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/setjmpup.c -o setjmpup.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/sfs.c -o sfs.o
../../../racket/src/sfs.c:603:28: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
info->max_calls[pos] = SCHEME_INT_VAL(SCHEME_VEC_ELS(vec)[1]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/sfs.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/sfs.c:603:28: note: instantiated from:
info->max_calls[pos] = SCHEME_INT_VAL(SCHEME_VEC_ELS(vec)[1]);
^ ~
../../../racket/src/sfs.c:603:43: note: instantiated from:
info->max_calls[pos] = SCHEME_INT_VAL(SCHEME_VEC_ELS(vec)[1]);
^ ~
In file included from ../../../racket/src/sfs.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/sfs.c:604:25: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
info->max_nontail = SCHEME_INT_VAL(SCHEME_VEC_ELS(vec)[2]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/sfs.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/sfs.c:604:25: note: instantiated from:
info->max_nontail = SCHEME_INT_VAL(SCHEME_VEC_ELS(vec)[2]);
^ ~
../../../racket/src/sfs.c:604:40: note: instantiated from:
info->max_nontail = SCHEME_INT_VAL(SCHEME_VEC_ELS(vec)[2]);
^ ~
In file included from ../../../racket/src/sfs.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/sfs.c:621:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = scheme_make_integer(n);
^ ~
In file included from ../../../racket/src/sfs.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/sfs.c:622:5: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = scheme_make_integer(info->max_nontail);
^ ~
In file included from ../../../racket/src/sfs.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/sfs.c:646:9: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
s->array[1] = body;
^ ~
In file included from ../../../racket/src/sfs.c:30:
../../../racket/src/schpriv.h:1260:18: note: array 'array' declared here
Scheme_Object *array[1];
^
../../../racket/src/sfs.c:926:13: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
depth = SCHEME_INT_VAL(SCHEME_VEC_ELS(data)[2]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/sfs.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/sfs.c:926:13: note: instantiated from:
depth = SCHEME_INT_VAL(SCHEME_VEC_ELS(data)[2]);
^ ~
../../../racket/src/sfs.c:926:28: note: instantiated from:
depth = SCHEME_INT_VAL(SCHEME_VEC_ELS(data)[2]);
^ ~
In file included from ../../../racket/src/sfs.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/sfs.c:1081:19: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
let_depth = SCHEME_INT_VAL(SCHEME_VEC_ELS(e)[2]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/sfs.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/sfs.c:1081:19: note: instantiated from:
let_depth = SCHEME_INT_VAL(SCHEME_VEC_ELS(e)[2]);
^ ~
../../../racket/src/sfs.c:1081:34: note: instantiated from:
let_depth = SCHEME_INT_VAL(SCHEME_VEC_ELS(e)[2]);
^ ~
In file included from ../../../racket/src/sfs.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/sfs.c:1082:12: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
ex = SCHEME_VEC_ELS(e)[1];
^ ~
In file included from ../../../racket/src/sfs.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/sfs.c:1086:7: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(e)[1] = ex;
^ ~
In file included from ../../../racket/src/sfs.c:30:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
9 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/string.c -I. -o string.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/struct.c -o struct.o
../../../racket/src/struct.c:1495:9: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
p = SCHEME_VEC_ELS(v)[1];
^ ~
In file included from ../../../racket/src/struct.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/struct.c:1499:11: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
p = SCHEME_VEC_ELS(v)[2];
^ ~
In file included from ../../../racket/src/struct.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/struct.c:1503:13: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
p = SCHEME_VEC_ELS(v)[3];
^ ~
In file included from ../../../racket/src/struct.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/struct.c:1757:12: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
proc = ((Scheme_Structure *)v)->slots[1];
^ ~
In file included from ../../../racket/src/struct.c:22:
../../../racket/src/schpriv.h:721:18: note: array 'slots' declared here
Scheme_Object *slots[1];
^
../../../racket/src/struct.c:2443:11: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SCHEME_VEC_ELS(px->redirects)[1]) {
^ ~
In file included from ../../../racket/src/struct.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/struct.c:2444:16: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
proc = SCHEME_VEC_ELS(px->redirects)[1];
^ ~
In file included from ../../../racket/src/struct.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/struct.c:2778:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(v)[1] = (argc > 1) ? argv[1] : ellipses_symbol;
^ ~
In file included from ../../../racket/src/struct.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/struct.c:4820:14: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
meth_wrap = SCHEME_TRUEP(((Scheme_Structure *)obj)->slots[3]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/struct.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/struct.c:4820:14: note: instantiated from:
meth_wrap = SCHEME_TRUEP(((Scheme_Structure *)obj)->slots[3]);
^ ~
In file included from ../../../racket/src/struct.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/struct.c:4820:14: note: instantiated from:
meth_wrap = SCHEME_TRUEP(((Scheme_Structure *)obj)->slots[3]);
^ ~
In file included from ../../../racket/src/struct.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/struct.c:4820:14: note: instantiated from:
meth_wrap = SCHEME_TRUEP(((Scheme_Structure *)obj)->slots[3]);
^ ~
../../../racket/src/struct.c:4820:27: note: instantiated from:
meth_wrap = SCHEME_TRUEP(((Scheme_Structure *)obj)->slots[3]);
^ ~
In file included from ../../../racket/src/struct.c:22:
../../../racket/src/schpriv.h:721:18: note: array 'slots' declared here
Scheme_Object *slots[1];
^
../../../racket/src/struct.c:5204:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(redirects)[1] = si_chaperone;
^ ~
In file included from ../../../racket/src/struct.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
9 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/symbol.c -o symbol.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/syntax.c -o syntax.o
../../../racket/src/syntax.c:1005:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(v)[1] = (Scheme_Object *)ht;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:1007:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(v)[1] = scheme_false;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:1027:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(v)[1] = (Scheme_Object *)ht;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:1038:8: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (!SCHEME_FALSEP(SCHEME_VEC_ELS(rnm)[1])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/syntax.c:1038:8: note: instantiated from:
if (!SCHEME_FALSEP(SCHEME_VEC_ELS(rnm)[1])) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/syntax.c:1038:8: note: instantiated from:
if (!SCHEME_FALSEP(SCHEME_VEC_ELS(rnm)[1])) {
^ ~
../../../racket/src/syntax.c:1038:22: note: instantiated from:
if (!SCHEME_FALSEP(SCHEME_VEC_ELS(rnm)[1])) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:1040:31: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
ht = (Scheme_Hash_Table *)SCHEME_VEC_ELS(rnm)[1];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:2158:6: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& (SCHEME_VEC_ELS(vec)[1] == (new_midx ? old_midx : scheme_false))
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:2159:6: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& (SCHEME_VEC_ELS(vec)[2] == (new_midx ? new_midx : scheme_false))
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:2160:6: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& (SCHEME_VEC_ELS(vec)[3] == (export_registry ? (Scheme_Object *)export_registry : scheme_false))) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:2165:7: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = (new_midx ? old_midx : scheme_false);
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:2166:7: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = (new_midx ? new_midx : scheme_false);
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:2167:7: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[3] = (export_registry ? (Scheme_Object *)export_registry : scheme_false);
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:2213:10: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
src = SCHEME_VEC_ELS(vec)[1];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:2214:11: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
dest = SCHEME_VEC_ELS(vec)[2];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:2227:13: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
src = SCHEME_VEC_ELS(vec)[1];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:2228:14: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
dest = SCHEME_VEC_ELS(vec)[2];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4080:8: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (!SCHEME_FALSEP(SCHEME_VEC_ELS(rename)[1])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/syntax.c:4080:8: note: instantiated from:
if (!SCHEME_FALSEP(SCHEME_VEC_ELS(rename)[1])) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/syntax.c:4080:8: note: instantiated from:
if (!SCHEME_FALSEP(SCHEME_VEC_ELS(rename)[1])) {
^ ~
../../../racket/src/syntax.c:4080:22: note: instantiated from:
if (!SCHEME_FALSEP(SCHEME_VEC_ELS(rename)[1])) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4082:49: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
pos = scheme_hash_get((Scheme_Hash_Table *)(SCHEME_VEC_ELS(rename)[1]), a);
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4169:16: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
rd = SCHEME_VEC_ELS(SCHEME_CAR(o_rename_stack))[3];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4173:22: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
result = SCHEME_VEC_ELS(SCHEME_CAR(o_rename_stack))[1];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4174:34: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
result_free_rename = SCHEME_VEC_ELS(SCHEME_CAR(o_rename_stack))[2];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4222:18: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (!SCHEME_FALSEP(SCHEME_VEC_ELS(orig)[1]))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/syntax.c:4222:18: note: instantiated from:
if (!SCHEME_FALSEP(SCHEME_VEC_ELS(orig)[1]))
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/syntax.c:4222:18: note: instantiated from:
if (!SCHEME_FALSEP(SCHEME_VEC_ELS(orig)[1]))
^ ~
../../../racket/src/syntax.c:4222:32: note: instantiated from:
if (!SCHEME_FALSEP(SCHEME_VEC_ELS(orig)[1]))
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4223:46: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
phase = scheme_bin_plus(phase, SCHEME_VEC_ELS(orig)[1]);
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4246:30: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
get_names[0] = SCHEME_VEC_ELS(result_free_rename)[1];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4247:30: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
get_names[1] = SCHEME_VEC_ELS(result_free_rename)[2];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4248:30: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
get_names[2] = SCHEME_VEC_ELS(result_free_rename)[3];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4249:30: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
get_names[3] = SCHEME_VEC_ELS(result_free_rename)[4];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4250:30: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
get_names[4] = SCHEME_VEC_ELS(result_free_rename)[5];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4251:30: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
get_names[5] = SCHEME_VEC_ELS(result_free_rename)[6];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4252:30: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
get_names[6] = SCHEME_VEC_ELS(result_free_rename)[7];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4262:50: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
result = scheme_modidx_shift(result, SCHEME_VEC_ELS(orig)[2], SCHEME_VEC_ELS(orig)[3]);
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4262:75: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
result = scheme_modidx_shift(result, SCHEME_VEC_ELS(orig)[2], SCHEME_VEC_ELS(orig)[3]);
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4515:13: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
src = SCHEME_VEC_ELS(vec)[1];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4516:14: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
dest = SCHEME_VEC_ELS(vec)[2];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4534:7: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
er = SCHEME_VEC_ELS(vec)[3];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4638:17: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = phase;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4639:17: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = modidx_shift_from;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4640:17: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[3] = modidx_shift_to;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4652:17: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = envname;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4653:17: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = free_id_rename;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4654:17: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[3] = rib_delim;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4928:16: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (!SCHEME_FALSEP(SCHEME_VEC_ELS(rename)[1])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/syntax.c:4928:16: note: instantiated from:
if (!SCHEME_FALSEP(SCHEME_VEC_ELS(rename)[1])) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/syntax.c:4928:16: note: instantiated from:
if (!SCHEME_FALSEP(SCHEME_VEC_ELS(rename)[1])) {
^ ~
../../../racket/src/syntax.c:4928:30: note: instantiated from:
if (!SCHEME_FALSEP(SCHEME_VEC_ELS(rename)[1])) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:4930:57: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
pos = scheme_hash_get((Scheme_Hash_Table *)(SCHEME_VEC_ELS(rename)[1]), SCHEME_STX_VAL(a));
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:5239:13: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
src = SCHEME_VEC_ELS(vec)[1];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:5240:14: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
dest = SCHEME_VEC_ELS(vec)[2];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:5256:16: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
er = SCHEME_VEC_ELS(vec)[3];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:5657:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = id;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:5658:5: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = nominal_modidx;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:5659:5: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[3] = nominal_name;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:5660:5: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[4] = mod_phase;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:5661:5: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[5] = src_phase_index;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:5662:5: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[6] = nominal_src_phase;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:5663:5: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[7] = (insp ? insp : scheme_false);
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:5925:12: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[2])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:30: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/syntax.c:5925:12: note: instantiated from:
&& !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[2])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/../include/scheme.h:344:31: note: instantiated from:
#define SCHEME_INTP(obj) (OBJ_TO_LONG(obj) & 0x1)
^
../../../racket/src/syntax.c:5925:12: note: instantiated from:
&& !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[2])) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/syntax.c:5925:12: note: instantiated from:
&& !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[2])) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/syntax.c:5925:12: note: instantiated from:
&& !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[2])) {
^ ~
../../../racket/src/syntax.c:5925:27: note: instantiated from:
&& !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[2])) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:5925:12: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[2])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:30: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/syntax.c:5925:12: note: instantiated from:
&& !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[2])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/syntax.c:5925:12: note: instantiated from:
&& !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[2])) {
^ ~
../../../racket/src/syntax.c:5925:27: note: instantiated from:
&& !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[2])) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:5952:13: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(v)[1] = prev_prec_ribs;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:5993:22: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
prev_prec_ribs = SCHEME_VEC_ELS(key)[1];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:6004:12: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[2]))) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:30: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/syntax.c:6004:12: note: instantiated from:
&& !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[2]))) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/../include/scheme.h:344:31: note: instantiated from:
#define SCHEME_INTP(obj) (OBJ_TO_LONG(obj) & 0x1)
^
../../../racket/src/syntax.c:6004:12: note: instantiated from:
&& !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[2]))) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/syntax.c:6004:12: note: instantiated from:
&& !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[2]))) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/syntax.c:6004:12: note: instantiated from:
&& !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[2]))) {
^ ~
../../../racket/src/syntax.c:6004:27: note: instantiated from:
&& !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[2]))) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:6004:12: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[2]))) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:30: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/syntax.c:6004:12: note: instantiated from:
&& !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[2]))) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/syntax.c:6004:12: note: instantiated from:
&& !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[2]))) {
^ ~
../../../racket/src/syntax.c:6004:27: note: instantiated from:
&& !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[2]))) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:6300:11: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(v2)[1] = scheme_false;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:6425:25: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SCHEME_RIBP(a) || !SCHEME_SYMBOLP(SCHEME_VEC_ELS(a)[2])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:30: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/syntax.c:6425:25: note: instantiated from:
if (SCHEME_RIBP(a) || !SCHEME_SYMBOLP(SCHEME_VEC_ELS(a)[2])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/../include/scheme.h:344:31: note: instantiated from:
#define SCHEME_INTP(obj) (OBJ_TO_LONG(obj) & 0x1)
^
../../../racket/src/syntax.c:6425:25: note: instantiated from:
if (SCHEME_RIBP(a) || !SCHEME_SYMBOLP(SCHEME_VEC_ELS(a)[2])) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/syntax.c:6425:25: note: instantiated from:
if (SCHEME_RIBP(a) || !SCHEME_SYMBOLP(SCHEME_VEC_ELS(a)[2])) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/syntax.c:6425:25: note: instantiated from:
if (SCHEME_RIBP(a) || !SCHEME_SYMBOLP(SCHEME_VEC_ELS(a)[2])) {
^ ~
../../../racket/src/syntax.c:6425:40: note: instantiated from:
if (SCHEME_RIBP(a) || !SCHEME_SYMBOLP(SCHEME_VEC_ELS(a)[2])) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:6425:25: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SCHEME_RIBP(a) || !SCHEME_SYMBOLP(SCHEME_VEC_ELS(a)[2])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:30: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/syntax.c:6425:25: note: instantiated from:
if (SCHEME_RIBP(a) || !SCHEME_SYMBOLP(SCHEME_VEC_ELS(a)[2])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/syntax.c:6425:25: note: instantiated from:
if (SCHEME_RIBP(a) || !SCHEME_SYMBOLP(SCHEME_VEC_ELS(a)[2])) {
^ ~
../../../racket/src/syntax.c:6425:40: note: instantiated from:
if (SCHEME_RIBP(a) || !SCHEME_SYMBOLP(SCHEME_VEC_ELS(a)[2])) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:6705:11: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SCHEME_TRUEP(SCHEME_VEC_ELS(aa)[3])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/syntax.c:6705:11: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(aa)[3])) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/syntax.c:6705:11: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(aa)[3])) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/syntax.c:6705:11: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(aa)[3])) {
^ ~
../../../racket/src/syntax.c:6705:24: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(aa)[3])) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:6713:34: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(a)[1] = SCHEME_VEC_ELS(aa)[1];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:6713:11: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(a)[1] = SCHEME_VEC_ELS(aa)[1];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:6714:34: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(a)[2] = SCHEME_VEC_ELS(aa)[2];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:6714:11: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(a)[2] = SCHEME_VEC_ELS(aa)[2];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:6715:11: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(a)[3] = scheme_false;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:7096:9: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(v)[1] = cert_marks;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:7392:21: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
|| !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[1])
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:30: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/syntax.c:7392:21: note: instantiated from:
|| !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[1])
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/../include/scheme.h:344:31: note: instantiated from:
#define SCHEME_INTP(obj) (OBJ_TO_LONG(obj) & 0x1)
^
../../../racket/src/syntax.c:7392:21: note: instantiated from:
|| !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[1])
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/syntax.c:7392:21: note: instantiated from:
|| !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[1])
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/syntax.c:7392:21: note: instantiated from:
|| !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[1])
^ ~
../../../racket/src/syntax.c:7392:36: note: instantiated from:
|| !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[1])
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:7392:21: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
|| !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[1])
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:30: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/syntax.c:7392:21: note: instantiated from:
|| !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[1])
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/syntax.c:7392:21: note: instantiated from:
|| !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[1])
^ ~
../../../racket/src/syntax.c:7392:36: note: instantiated from:
|| !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[1])
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:7393:21: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
|| !SCHEME_MODIDXP(SCHEME_VEC_ELS(v)[2])
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/syntax.c:229:30: note: instantiated from:
#define SCHEME_MODIDXP(obj) (SAME_TYPE(SCHEME_TYPE(obj), scheme_module_index_type))
^
../../../racket/src/syntax.c:7393:21: note: instantiated from:
|| !SCHEME_MODIDXP(SCHEME_VEC_ELS(v)[2])
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/syntax.c:229:40: note: instantiated from:
#define SCHEME_MODIDXP(obj) (SAME_TYPE(SCHEME_TYPE(obj), scheme_module_index_type))
^
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/../include/scheme.h:344:31: note: instantiated from:
#define SCHEME_INTP(obj) (OBJ_TO_LONG(obj) & 0x1)
^
../../../racket/src/syntax.c:7393:21: note: instantiated from:
|| !SCHEME_MODIDXP(SCHEME_VEC_ELS(v)[2])
^ ~
../../../racket/src/syntax.c:229:40: note: instantiated from:
#define SCHEME_MODIDXP(obj) (SAME_TYPE(SCHEME_TYPE(obj), scheme_module_index_type))
^
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/syntax.c:7393:21: note: instantiated from:
|| !SCHEME_MODIDXP(SCHEME_VEC_ELS(v)[2])
^ ~
../../../racket/src/syntax.c:229:40: note: instantiated from:
#define SCHEME_MODIDXP(obj) (SAME_TYPE(SCHEME_TYPE(obj), scheme_module_index_type))
^
../../../racket/src/syntax.c:7393:21: note: instantiated from:
|| !SCHEME_MODIDXP(SCHEME_VEC_ELS(v)[2])
^ ~
../../../racket/src/syntax.c:7393:36: note: instantiated from:
|| !SCHEME_MODIDXP(SCHEME_VEC_ELS(v)[2])
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:7393:21: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
|| !SCHEME_MODIDXP(SCHEME_VEC_ELS(v)[2])
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/syntax.c:229:30: note: instantiated from:
#define SCHEME_MODIDXP(obj) (SAME_TYPE(SCHEME_TYPE(obj), scheme_module_index_type))
^
../../../racket/src/syntax.c:7393:21: note: instantiated from:
|| !SCHEME_MODIDXP(SCHEME_VEC_ELS(v)[2])
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/syntax.c:229:40: note: instantiated from:
#define SCHEME_MODIDXP(obj) (SAME_TYPE(SCHEME_TYPE(obj), scheme_module_index_type))
^
../../../racket/src/syntax.c:7393:21: note: instantiated from:
|| !SCHEME_MODIDXP(SCHEME_VEC_ELS(v)[2])
^ ~
../../../racket/src/syntax.c:7393:36: note: instantiated from:
|| !SCHEME_MODIDXP(SCHEME_VEC_ELS(v)[2])
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:7394:21: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
|| !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[3])
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:30: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/syntax.c:7394:21: note: instantiated from:
|| !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[3])
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/../include/scheme.h:344:31: note: instantiated from:
#define SCHEME_INTP(obj) (OBJ_TO_LONG(obj) & 0x1)
^
../../../racket/src/syntax.c:7394:21: note: instantiated from:
|| !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[3])
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/../include/scheme.h:355:32: note: instantiated from:
# define SCHEME_TYPE(obj) (SCHEME_INTP(obj)?(Scheme_Type)scheme_integer_type:((Scheme_Object *)(obj))->type)
^
../../../racket/src/syntax.c:7394:21: note: instantiated from:
|| !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[3])
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/syntax.c:7394:21: note: instantiated from:
|| !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[3])
^ ~
../../../racket/src/syntax.c:7394:36: note: instantiated from:
|| !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[3])
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:7394:21: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
|| !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[3])
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:30: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/syntax.c:7394:21: note: instantiated from:
|| !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[3])
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:398:40: note: instantiated from:
#define SCHEME_SYMBOLP(obj) SAME_TYPE(SCHEME_TYPE(obj), scheme_symbol_type)
^
../../../racket/src/syntax.c:7394:21: note: instantiated from:
|| !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[3])
^ ~
../../../racket/src/syntax.c:7394:36: note: instantiated from:
|| !SCHEME_SYMBOLP(SCHEME_VEC_ELS(v)[3])
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:7395:30: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
|| !ok_phase(SCHEME_VEC_ELS(v)[4])
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:7396:30: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
|| !ok_phase(SCHEME_VEC_ELS(v)[5])
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:7397:30: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
|| !ok_phase(SCHEME_VEC_ELS(v)[6]))
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:7407:12: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (!SCHEME_FALSEP(SCHEME_VEC_ELS(a)[1])) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/syntax.c:7407:12: note: instantiated from:
if (!SCHEME_FALSEP(SCHEME_VEC_ELS(a)[1])) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/syntax.c:7407:12: note: instantiated from:
if (!SCHEME_FALSEP(SCHEME_VEC_ELS(a)[1])) {
^ ~
../../../racket/src/syntax.c:7407:26: note: instantiated from:
if (!SCHEME_FALSEP(SCHEME_VEC_ELS(a)[1])) {
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:7408:9: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(a)[1] = scheme_false;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:7607:23: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
bdg = SCHEME_VEC_ELS(a)[1];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:7630:17: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(a)[1] = bdg;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:7836:15: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
cert_marks = SCHEME_VEC_ELS(o)[1];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:8394:31: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& pos_exact_or_false_p(SCHEME_VEC_ELS(src)[1])
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:8395:34: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& nonneg_exact_or_false_p(SCHEME_VEC_ELS(src)[2])
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:8396:31: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& pos_exact_or_false_p(SCHEME_VEC_ELS(src)[3])
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:8397:34: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& nonneg_exact_or_false_p(SCHEME_VEC_ELS(src)[4]))
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:8428:16: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
line = SCHEME_VEC_ELS(src)[1];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:8429:15: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
col = SCHEME_VEC_ELS(src)[2];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:8430:15: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
pos = SCHEME_VEC_ELS(src)[3];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:8431:16: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
span = SCHEME_VEC_ELS(src)[4];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:9089:13: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
src = SCHEME_VEC_ELS(vec)[1];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:9090:14: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
dest = SCHEME_VEC_ELS(vec)[2];
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:9219:7: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = (c->modidx ? c->modidx : scheme_false);
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:9220:7: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = (c->key ? c->key : scheme_false);
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:9299:9: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(v)[1] = mrn->phase;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:9300:9: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(v)[2] = (Scheme_Object *)mrn->ht;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:9301:9: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(v)[3] = (mrn->nomarshal_ht ? (Scheme_Object *)mrn->nomarshal_ht : scheme_false);
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:9302:9: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(v)[4] = scheme_true; /* mrn->shared_pes; */
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:9303:9: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(v)[5] = (mrn->marked_names ? (Scheme_Object *)mrn->marked_names : scheme_false);
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:9304:9: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(v)[6] = (Scheme_Object *)mrn->unmarshal_info;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:9343:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = v;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:9345:3: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = v;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:9361:7: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[7]))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/syntax.c:9361:7: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[7]))
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/syntax.c:9361:7: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[7]))
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/syntax.c:9361:7: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[7]))
^ ~
../../../racket/src/syntax.c:9361:20: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[7]))
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:9362:5: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[7] = scheme_true;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:9381:7: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[7]))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/../include/scheme.h:349:24: note: instantiated from:
#define SAME_OBJ(a, b) SAME_PTR(a, b)
^
../../../racket/src/syntax.c:9381:7: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[7]))
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/../include/scheme.h:404:32: note: instantiated from:
#define SCHEME_FALSEP(obj) SAME_OBJ((obj), scheme_false)
^
../../../racket/src/syntax.c:9381:7: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[7]))
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:405:33: note: instantiated from:
#define SCHEME_TRUEP(obj) (!SCHEME_FALSEP(obj))
^
../../../racket/src/syntax.c:9381:7: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[7]))
^ ~
../../../racket/src/syntax.c:9381:20: note: instantiated from:
if (SCHEME_TRUEP(SCHEME_VEC_ELS(vec)[7]))
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/syntax.c:9382:5: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[7] = insp;
^ ~
In file included from ../../../racket/src/syntax.c:22:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
106 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/thread.c -o thread.o
../../../racket/src/thread.c:7280:71: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
proc = (gccb_Ptr_Ptr_Ptr_Int_to_Void)scheme_extract_pointer(SCHEME_VEC_ELS(act)[1]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7281:38: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
a = scheme_extract_pointer(SCHEME_VEC_ELS(act)[2]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7282:38: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
b = scheme_extract_pointer(SCHEME_VEC_ELS(act)[3]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7283:38: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
c = scheme_extract_pointer(SCHEME_VEC_ELS(act)[4]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7284:15: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
i = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[5]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/thread.c:7284:15: note: instantiated from:
i = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[5]);
^ ~
../../../racket/src/thread.c:7284:30: note: instantiated from:
i = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[5]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7291:67: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
proc = (gccb_Ptr_Ptr_Ptr_to_Void)scheme_extract_pointer(SCHEME_VEC_ELS(act)[1]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7292:38: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
a = scheme_extract_pointer(SCHEME_VEC_ELS(act)[2]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7293:38: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
b = scheme_extract_pointer(SCHEME_VEC_ELS(act)[3]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7294:38: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
c = scheme_extract_pointer(SCHEME_VEC_ELS(act)[4]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7302:69: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
proc = (gccb_Ptr_Ptr_Float_to_Void)scheme_extract_pointer(SCHEME_VEC_ELS(act)[1]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7303:38: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
a = scheme_extract_pointer(SCHEME_VEC_ELS(act)[2]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7304:38: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
b = scheme_extract_pointer(SCHEME_VEC_ELS(act)[3]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7305:15: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
f = SCHEME_DBL_VAL(SCHEME_VEC_ELS(act)[4]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/thread.c:7305:30: note: instantiated from:
f = SCHEME_DBL_VAL(SCHEME_VEC_ELS(act)[4]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7313:70: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
proc = (gccb_Ptr_Ptr_Double_to_Void)scheme_extract_pointer(SCHEME_VEC_ELS(act)[1]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7314:38: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
a = scheme_extract_pointer(SCHEME_VEC_ELS(act)[2]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7315:38: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
b = scheme_extract_pointer(SCHEME_VEC_ELS(act)[3]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7316:15: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
d = SCHEME_DBL_VAL(SCHEME_VEC_ELS(act)[4]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/src/thread.c:7316:30: note: instantiated from:
d = SCHEME_DBL_VAL(SCHEME_VEC_ELS(act)[4]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7324:69: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
proc = (gccb_Ptr_Ptr_Ptr_Nine_Ints)scheme_extract_pointer(SCHEME_VEC_ELS(act)[1]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7325:38: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
a = scheme_extract_pointer(SCHEME_VEC_ELS(act)[2]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7326:38: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
b = scheme_extract_pointer(SCHEME_VEC_ELS(act)[3]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7327:38: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
c = scheme_extract_pointer(SCHEME_VEC_ELS(act)[4]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7328:16: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
i1 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[5]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/thread.c:7328:16: note: instantiated from:
i1 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[5]);
^ ~
../../../racket/src/thread.c:7328:31: note: instantiated from:
i1 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[5]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7329:16: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
i2 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[6]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/thread.c:7329:16: note: instantiated from:
i2 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[6]);
^ ~
../../../racket/src/thread.c:7329:31: note: instantiated from:
i2 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[6]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7330:16: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
i3 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[7]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/thread.c:7330:16: note: instantiated from:
i3 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[7]);
^ ~
../../../racket/src/thread.c:7330:31: note: instantiated from:
i3 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[7]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7331:16: warning: array index of '8' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
i4 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[8]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/thread.c:7331:16: note: instantiated from:
i4 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[8]);
^ ~
../../../racket/src/thread.c:7331:31: note: instantiated from:
i4 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[8]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7332:16: warning: array index of '9' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
i5 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[9]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/thread.c:7332:16: note: instantiated from:
i5 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[9]);
^ ~
../../../racket/src/thread.c:7332:31: note: instantiated from:
i5 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[9]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7333:16: warning: array index of '10' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
i6 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[10]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/thread.c:7333:16: note: instantiated from:
i6 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[10]);
^ ~~
../../../racket/src/thread.c:7333:31: note: instantiated from:
i6 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[10]);
^ ~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7334:16: warning: array index of '11' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
i7 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[11]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/thread.c:7334:16: note: instantiated from:
i7 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[11]);
^ ~~
../../../racket/src/thread.c:7334:31: note: instantiated from:
i7 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[11]);
^ ~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7335:16: warning: array index of '12' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
i8 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[12]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/thread.c:7335:16: note: instantiated from:
i8 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[12]);
^ ~~
../../../racket/src/thread.c:7335:31: note: instantiated from:
i8 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[12]);
^ ~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7336:16: warning: array index of '13' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
i9 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[13]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/thread.c:7336:16: note: instantiated from:
i9 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[13]);
^ ~~
../../../racket/src/thread.c:7336:31: note: instantiated from:
i9 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[13]);
^ ~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7343:69: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
proc = (gccb_OSapi_Ptr_Ptr_to_Void)scheme_extract_pointer(SCHEME_VEC_ELS(act)[1]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7344:38: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
a = scheme_extract_pointer(SCHEME_VEC_ELS(act)[2]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7345:38: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
b = scheme_extract_pointer(SCHEME_VEC_ELS(act)[3]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7353:69: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
proc = (gccb_OSapi_Ptr_Int_to_Void)scheme_extract_pointer(SCHEME_VEC_ELS(act)[1]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7354:38: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
a = scheme_extract_pointer(SCHEME_VEC_ELS(act)[2]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7355:15: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
i = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[3]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/thread.c:7355:15: note: instantiated from:
i = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[3]);
^ ~
../../../racket/src/thread.c:7355:30: note: instantiated from:
i = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[3]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7364:92: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
proc = (gccb_OSapi_Ptr_Four_Ints_Ptr_Int_Int_Long_to_Void)scheme_extract_pointer(SCHEME_VEC_ELS(act)[1]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7365:38: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
a = scheme_extract_pointer(SCHEME_VEC_ELS(act)[2]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7366:16: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
i1 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[3]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/thread.c:7366:16: note: instantiated from:
i1 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[3]);
^ ~
../../../racket/src/thread.c:7366:31: note: instantiated from:
i1 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[3]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7367:16: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
i2 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[4]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/thread.c:7367:16: note: instantiated from:
i2 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[4]);
^ ~
../../../racket/src/thread.c:7367:31: note: instantiated from:
i2 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[4]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7368:16: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
i3 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[5]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/thread.c:7368:16: note: instantiated from:
i3 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[5]);
^ ~
../../../racket/src/thread.c:7368:31: note: instantiated from:
i3 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[5]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7369:16: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
i4 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[6]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/thread.c:7369:16: note: instantiated from:
i4 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[6]);
^ ~
../../../racket/src/thread.c:7369:31: note: instantiated from:
i4 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[6]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7370:38: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
b = scheme_extract_pointer(SCHEME_VEC_ELS(act)[7]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7371:16: warning: array index of '8' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
i5 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[8]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/thread.c:7371:16: note: instantiated from:
i5 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[8]);
^ ~
../../../racket/src/thread.c:7371:31: note: instantiated from:
i5 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[8]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7372:16: warning: array index of '9' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
i6 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[9]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/thread.c:7372:16: note: instantiated from:
i6 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[9]);
^ ~
../../../racket/src/thread.c:7372:31: note: instantiated from:
i6 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[9]);
^ ~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/thread.c:7373:16: warning: array index of '10' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
l1 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[10]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/thread.c:7373:16: note: instantiated from:
l1 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[10]);
^ ~~
../../../racket/src/thread.c:7373:31: note: instantiated from:
l1 = SCHEME_INT_VAL(SCHEME_VEC_ELS(act)[10]);
^ ~~
In file included from ../../../racket/src/thread.c:41:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
46 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/type.c -o type.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/unwind/libunwind.c -o unwind.o
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/validate.c -o validate.o
../../../racket/src/validate.c:192:16: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
only_var = SCHEME_VEC_ELS(data)[1];
^ ~
In file included from ../../../racket/src/validate.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/validate.c:436:26: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
rp = (Resolve_Prefix *)SCHEME_VEC_ELS(data)[1];
^ ~
In file included from ../../../racket/src/validate.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/validate.c:437:22: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
base_stack_depth = SCHEME_VEC_ELS(data)[2];
^ ~
In file included from ../../../racket/src/validate.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/validate.c:444:11: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
dummy = SCHEME_VEC_ELS(data)[3];
^ ~
In file included from ../../../racket/src/validate.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/validate.c:810:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[1] = (Scheme_Object *)closure_stack;
^ ~
In file included from ../../../racket/src/validate.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/validate.c:811:5: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[2] = (Scheme_Object *)tls;
^ ~
In file included from ../../../racket/src/validate.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/validate.c:812:5: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[3] = scheme_make_integer(num_toplevels);
^ ~
In file included from ../../../racket/src/validate.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/validate.c:813:5: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[4] = scheme_make_integer(num_stxes);
^ ~
In file included from ../../../racket/src/validate.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/validate.c:814:5: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[5] = scheme_make_integer(num_lifts);
^ ~
In file included from ../../../racket/src/validate.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/validate.c:815:5: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[6] = scheme_make_integer(self_pos_in_closure);
^ ~
In file included from ../../../racket/src/validate.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/validate.c:816:5: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[7] = new_procs ? (Scheme_Object *)new_procs : scheme_false;
^ ~
In file included from ../../../racket/src/validate.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/validate.c:817:5: warning: array index of '8' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
SCHEME_VEC_ELS(vec)[8] = tl_use_map ? tl_use_map : scheme_false;
^ ~
In file included from ../../../racket/src/validate.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/validate.c:871:17: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
let_depth = SCHEME_INT_VAL(SCHEME_VEC_ELS(e)[2]);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../../../racket/src/validate.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:494:31: note: instantiated from:
#define SCHEME_INT_VAL(obj) (OBJ_TO_LONG(obj)>>1)
^
../../../racket/src/validate.c:871:17: note: instantiated from:
let_depth = SCHEME_INT_VAL(SCHEME_VEC_ELS(e)[2]);
^ ~
../../../racket/src/validate.c:871:32: note: instantiated from:
let_depth = SCHEME_INT_VAL(SCHEME_VEC_ELS(e)[2]);
^ ~
In file included from ../../../racket/src/validate.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/validate.c:872:28: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
rp = (Resolve_Prefix *)SCHEME_VEC_ELS(e)[3];
^ ~
In file included from ../../../racket/src/validate.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
../../../racket/src/validate.c:873:9: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
e = SCHEME_VEC_ELS(e)[1];
^ ~
In file included from ../../../racket/src/validate.c:26:
In file included from ../../../racket/src/schpriv.h:21:
../../../racket/src/../include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../../racket/src/../include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
15 warnings generated.
clang -I./.. -I../../../racket/src/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c ../../../racket/src/vector.c -o vector.o
make libracket.a
../../racket/../utils/nicear ar ruv libracket.a src/*.o ../foreign/foreign.o ../foreign/libffi/src/*.o ../foreign/libffi/src/*/*.o
ar: creating archive libracket.a
/usr/bin/ranlib: file: libracket.a(unwind.o) has no symbols
/usr/bin/ranlib: file: libracket.a(darwin.o) has no symbols
/usr/bin/ranlib: file: libracket.a(ffi.o) has no symbols
a - src/bignum.o
a - src/bool.o
a - src/builtin.o
a - src/char.o
a - src/compenv.o
a - src/compile.o
a - src/complex.o
a - src/dynext.o
a - src/env.o
a - src/error.o
a - src/eval.o
a - src/file.o
a - src/fun.o
a - src/future.o
a - src/gmp.o
a - src/hash.o
a - src/jit.o
a - src/jitalloc.o
a - src/jitarith.o
a - src/jitcall.o
a - src/jitcommon.o
a - src/jitinline.o
a - src/jitprep.o
a - src/jitstack.o
a - src/jitstate.o
a - src/list.o
a - src/marshal.o
a - src/module.o
a - src/mzrt.o
a - src/network.o
a - src/numarith.o
a - src/number.o
a - src/numcomp.o
a - src/numstr.o
a - src/optimize.o
a - src/place.o
a - src/port.o
a - src/portfun.o
a - src/print.o
a - src/rational.o
a - src/read.o
a - src/regexp.o
a - src/resolve.o
a - src/salloc.o
a - src/sema.o
a - src/setjmpup.o
a - src/sfs.o
a - src/string.o
a - src/struct.o
a - src/symbol.o
a - src/syntax.o
a - src/thread.o
a - src/type.o
a - src/unwind.o
a - src/validate.o
a - src/vector.o
a - ../foreign/foreign.o
a - ../foreign/libffi/src/closures.o
a - ../foreign/libffi/src/debug.o
a - ../foreign/libffi/src/java_raw_api.o
a - ../foreign/libffi/src/prep_cif.o
a - ../foreign/libffi/src/raw_api.o
a - ../foreign/libffi/src/types.o
a - ../foreign/libffi/src/x86/darwin.o
a - ../foreign/libffi/src/x86/darwin64.o
a - ../foreign/libffi/src/x86/ffi.o
a - ../foreign/libffi/src/x86/ffi64.o
ranlib libracket.a
ranlib: file: libracket.a(unwind.o) has no symbols
ranlib: file: libracket.a(darwin.o) has no symbols
ranlib: file: libracket.a(ffi.o) has no symbols
make racketcgc
mkdir -p Racket.framework/Versions/5.1.1.5
clang -o Racket.framework/Versions/5.1.1.5/Racket -pthread -framework CoreFoundation -dynamiclib -all_load libracket.a libmzgc.a -ldl -lm -liconv
clang: warning: argument unused during compilation: '-pthread'
ld: warning: could not create compact unwind for _ffi_call_unix64: does not use RBP or RSP based frame
rm -f Racket.framework/Racket
ln -s Versions/5.1.1.5/Racket Racket.framework/Racket
clang -I. -I../../racket/include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -DINITIAL_COLLECTS_DIRECTORY='"'"`cd ../../racket/../../collects; pwd`"'"' -c ../../racket/main.c -o main.o
In file included from ../../racket/main.c:178:
../../racket/cmdline.inc:188:12: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
a[1] = SCHEME_VEC_ELS(v)[1];
^ ~
In file included from ../../racket/main.c:34:
../../racket/include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../racket/include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
In file included from ../../racket/main.c:178:
../../racket/cmdline.inc:191:12: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
a[0] = SCHEME_VEC_ELS(v)[2];
^ ~
In file included from ../../racket/main.c:34:
../../racket/include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../racket/include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
In file included from ../../racket/main.c:178:
../../racket/cmdline.inc:218:14: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
a[1] = SCHEME_VEC_ELS(v)[1];
^ ~
In file included from ../../racket/main.c:34:
../../racket/include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../racket/include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
In file included from ../../racket/main.c:178:
../../racket/cmdline.inc:219:14: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
a[2] = SCHEME_VEC_ELS(v)[2];
^ ~
In file included from ../../racket/main.c:34:
../../racket/include/scheme.h:536:30: note: instantiated from:
#define SCHEME_VEC_ELS(obj) (((Scheme_Vector *)(obj))->els)
^
../../racket/include/scheme.h:308:18: note: array 'els' declared here
Scheme_Object *els[1];
^
4 warnings generated.
clang -o racketcgc -pthread main.o -Wl,-headerpad_max_install_names -F. -framework Racket -ldl -lm -liconv
clang: warning: argument unused during compilation: '-pthread'
/usr/bin/install_name_tool -change "Racket.framework/Versions/5.1.1.5/Racket" "@executable_path/Racket.framework/Versions/5.1.1.5/Racket" "racketcgc"
cd gc2; make all
mkdir xsrc
make xsrc/precomp.h
env XFORM_PRECOMP=yes ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/precomp.h ../../../racket/gc2/precomp.c
Copying tree...
Copying /Users/elliottcable/Code/Sources/racket/src/racket/gc2/./xform-mod.rkt to xform-collects/xform/xform-mod.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/scheme/mzscheme.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/scheme/mzscheme.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/more-scheme.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/more-scheme.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/stx.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/stx.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/small-scheme.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/small-scheme.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/qq-and-or.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/qq-and-or.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/cond.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/cond.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/define-et-al.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/define-et-al.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/stxcase-scheme.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/stxcase-scheme.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/stxcase.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/stxcase.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/sc.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/sc.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/ellipses.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/ellipses.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/with-stx.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/with-stx.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/stxloc.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/stxloc.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/qqstx.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/qqstx.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/define.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/define.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/letstx-scheme.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/letstx-scheme.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/norm-define.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/norm-define.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/misc.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/misc.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/stxmz-body.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/stxmz-body.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/old-ds.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/old-ds.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/define-struct.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/define-struct.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/struct-info.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/struct-info.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/../stxparam.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/stxparam.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/../stxparam-exptime.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/stxparam-exptime.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/../private/stxparamkey.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/stxparamkey.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/../private/stxparam.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/stxparam.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/old-rp.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/old-rp.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/old-if.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/old-if.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/old-procs.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/old-procs.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/map.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/map.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/kernstruct.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/kernstruct.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/promise.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/promise.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/name.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/name.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/list.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/list.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/pre-base.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/pre-base.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/kw.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/kw.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/sort.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/sort.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/reqprov.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/reqprov.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/../require-transform.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/require-transform.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/../provide-transform.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/provide-transform.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/modbeg.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/modbeg.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/for.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/for.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/norm-arity.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/norm-arity.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/tcp.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/tcp.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/udp.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/udp.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/mzscheme/main.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/mzscheme/main.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/compiler/private/xform.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/compiler/private/xform.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/mzlib/list.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/mzlib/list.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/scheme/base.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/scheme/base.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/base.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/base.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/base.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/base.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/hash.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/hash.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/string.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/string.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/kw-file.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/kw-file.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/namespace.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/namespace.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/struct.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/struct.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/scheme/private/namespace.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/scheme/private/namespace.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/scheme/list.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/scheme/list.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/scheme/private/provider/lang.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/scheme/private/provider/lang.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/list.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/list.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/mzlib/etc.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/mzlib/etc.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/syntax/kerncase.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/syntax/kerncase.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/syntax/stx.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/syntax/stx.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/syntax/name.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/syntax/name.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/setup/main-collects.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/setup/main-collects.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/setup/dirs.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/setup/dirs.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/promise.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/promise.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/config/main.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/config/main.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/config/config.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/config/config.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/setup/configtab.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/setup/configtab.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/compiler/private/winutf16.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/compiler/private/winutf16.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/compiler/private/mach-o.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/compiler/private/mach-o.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/setup/private/main-collects.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/setup/private/main-collects.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/setup/path-relativize.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/setup/path-relativize.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/mzlib/private/stxset.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/mzlib/private/stxset.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/syntax/context.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/syntax/context.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/local.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/local.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/local.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/local.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/bool.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/bool.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/block.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/block.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/mzlib/kw.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/mzlib/kw.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/mzlib/process.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/mzlib/process.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/mzlib/port.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/mzlib/port.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/contract/base.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/contract/base.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/contract/private/arrow.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/contract/private/arrow.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/contract/private/helpers.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/contract/private/helpers.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/struct-info.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/struct-info.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/contract/private/arr-util.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/contract/private/arr-util.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/contract/private/guts.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/contract/private/guts.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/contract/private/blame.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/contract/private/blame.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/syntax/srcloc.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/syntax/srcloc.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/pretty.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/pretty.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/mzlib/private/port.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/mzlib/private/port.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/contract/private/prop.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/contract/private/prop.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/contract/private/misc.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/contract/private/misc.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/contract/private/arr-i.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/contract/private/arr-i.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/contract/private/arr-i-parse.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/contract/private/arr-i-parse.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/syntax/private/boundmap.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/syntax/private/boundmap.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/contract/private/opt.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/contract/private/opt.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/contract/private/opt-guts.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/contract/private/opt-guts.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/syntax/location.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/syntax/location.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/unstable/dirs.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/unstable/dirs.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/planet/config.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/planet/config.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/planet/private/define-config.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/planet/private/define-config.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/contract/private/base.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/contract/private/base.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/contract/private/box.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/contract/private/box.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/contract/private/hash.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/contract/private/hash.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/contract/private/vector.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/contract/private/vector.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/contract/private/struct.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/contract/private/struct.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/contract/private/provide.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/contract/private/provide.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/contract/private/exists.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/contract/private/exists.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/contract/private/opters.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/contract/private/opters.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/mzlib/cmdline.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/mzlib/cmdline.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/scheme/cmdline.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/scheme/cmdline.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/cmdline.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/cmdline.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/s-exp/lang/reader.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/s-exp/lang/reader.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/syntax/module-reader.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/syntax/module-reader.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/syntax/readerr.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/syntax/readerr.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/mzscheme/lang/reader.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/mzscheme/lang/reader.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/scheme/base/lang/reader.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/scheme/base/lang/reader.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/scheme/lang/reader.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/scheme/lang/reader.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/scheme/private/lang/reader.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/scheme/private/lang/reader.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/scheme/private/provider/lang/reader.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/scheme/private/provider/lang/reader.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/base/lang/reader.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/base/lang/reader.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/private/lang/reader.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/private/lang/reader.rkt
Copying /Users/elliottcable/Code/Sources/racket/collects/racket/lang/reader.rkt to /Users/elliottcable/Code/Sources/racket/src/build/racket/gc2/xform-collects/racket/lang/reader.rkt
Compiling xform support...
Done making xform-collects.
make xobjects
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/salloc.c ../../../racket/gc2/../src/salloc.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/salloc.c -o salloc.o
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/bignum.c ../../../racket/gc2/../src/bignum.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/bignum.c -o bignum.o
../../../racket/gc2/../src/bignum.c:493:13: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((o ) == ((Scheme_Object * ) (void * ) sm ) ) ) {
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/bignum.c:493:13: note: use '=' to turn this equality comparison into an assignment
if (((o ) == ((Scheme_Object * ) (void * ) sm ) ) ) {
^~
=
../../../racket/gc2/../src/bignum.c:493:13: note: remove extraneous parentheses around the comparison to silence
this warning
if (((o ) == ((Scheme_Object * ) (void * ) sm ) ) ) {
~ ^ ~
../../../racket/gc2/../src/bignum.c:1630:17: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((v ) == scheme_infinity_val ) ) {
~~~~~^~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/bignum.c:1630:17: note: use '=' to turn this equality comparison into an assignment
if (((v ) == scheme_infinity_val ) ) {
^~
=
../../../racket/gc2/../src/bignum.c:1630:17: note: remove extraneous parentheses around the comparison to silence
this warning
if (((v ) == scheme_infinity_val ) ) {
~ ^ ~
2 warnings generated.
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/bool.c ../../../racket/gc2/../src/bool.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/bool.c -o bool.o
../../../racket/gc2/../src/bool.c:231:16: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((obj1 ) == (obj2 ) ) )
~~~~~~~~^~~~~~~~~~
../../../racket/gc2/../src/bool.c:231:16: note: use '=' to turn this equality comparison into an assignment
if (((obj1 ) == (obj2 ) ) )
^~
=
../../../racket/gc2/../src/bool.c:231:16: note: remove extraneous parentheses around the comparison to silence this
warning
if (((obj1 ) == (obj2 ) ) )
~ ^ ~
../../../racket/gc2/../src/bool.c:324:18: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((obj1 ) == (obj2 ) ) )
~~~~~~~~^~~~~~~~~~
../../../racket/gc2/../src/bool.c:324:18: note: use '=' to turn this equality comparison into an assignment
if (((obj1 ) == (obj2 ) ) )
^~
=
../../../racket/gc2/../src/bool.c:324:18: note: remove extraneous parentheses around the comparison to silence this
warning
if (((obj1 ) == (obj2 ) ) )
~ ^ ~
../../../racket/gc2/../src/bool.c:556:18: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
procs1 = (((Scheme_Vector * ) (procs1 ) ) -> els ) [1 ] ;
^ ~
In file included from xsrc/bool.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/bool.c:748:16: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((v ) ) == (scheme_false ) ) )
~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/bool.c:748:16: note: use '=' to turn this equality comparison into an assignment
if ((((v ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/bool.c:748:16: note: remove extraneous parentheses around the comparison to silence this
warning
if ((((v ) ) == (scheme_false ) ) )
~ ^ ~
4 warnings generated.
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/builtin.c ../../../racket/gc2/../src/builtin.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/builtin.c -o builtin.o
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/char.c ../../../racket/gc2/../src/char.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/char.c -o char.o
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/compenv.c ../../../racket/gc2/../src/compenv.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/compenv.c -o compenv.o
../../../racket/gc2/../src/compenv.c:414:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [1 ] = (Scheme_Object * ) pp ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:415:3: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [2 ] = data ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:416:3: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [3 ] = end_stmts ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:417:3: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [4 ] = context_key ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:418:3: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [5 ] = (requires ? requires : scheme_false ) ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:419:3: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [6 ] = scheme_null ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:420:3: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [7 ] = provides ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:429:14: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& (! ((((((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) orig_env ) -> data ) -> lifts ) ) -> els ) [5...
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:441:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [1 ] = scheme_void ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:442:5: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [2 ] = scheme_void ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:443:5: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [3 ] = scheme_false ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:444:5: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [4 ] = scheme_false ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:445:5: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [5 ] = p ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:446:5: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [6 ] = scheme_null ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:447:5: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [7 ] = scheme_false ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:460:10: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
return (((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [3 ] ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:465:10: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
return (((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [6 ] ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:470:10: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
return (((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [7 ] ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:589:7: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (pr ) ) -> els ) [1 ] = ((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ...
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:590:7: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (pr ) ) -> els ) [2 ] = ((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ...
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:1062:18: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((abdg ) == (bdg ) ) ) {
~~~~~~~~^~~~~~~~~
../../../racket/gc2/../src/compenv.c:1062:18: note: use '=' to turn this equality comparison into an assignment
if (((abdg ) == (bdg ) ) ) {
^~
=
../../../racket/gc2/../src/compenv.c:1062:18: note: remove extraneous parentheses around the comparison to silence
this warning
if (((abdg ) == (bdg ) ) ) {
~ ^ ~
../../../racket/gc2/../src/compenv.c:1087:82: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((((Scheme_Simple_Object * ) (m ) ) -> u . pair_val . cdr ) ) == (scheme_null ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compenv.c:1087:82: note: use '=' to turn this equality comparison into an assignment
if ((((((Scheme_Simple_Object * ) (m ) ) -> u . pair_val . cdr ) ) == (scheme_null ) ) )
^~
=
../../../racket/gc2/../src/compenv.c:1087:82: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((((Scheme_Simple_Object * ) (m ) ) -> u . pair_val . cdr ) ) == (scheme_null ) ) )
~ ^ ~
../../../racket/gc2/../src/compenv.c:1057:14: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
abdg = (((Scheme_Vector * ) (amarks ) ) -> els ) [1 ] ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:1175:7: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (a ) ) -> els ) [1 ] = bdg ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:1439:34: warning: equality comparison with extraneous parentheses
[-Wparentheses]
...(((name ) == (((Scheme_Stx * ) (& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> const_names [j ] ) -> val )...
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compenv.c:1439:34: note: use '=' to turn this equality comparison into an assignment
if (((name ) == (((Scheme_Stx * ) (& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> ...
^~
=
../../../racket/gc2/../src/compenv.c:1439:34: note: remove extraneous parentheses around the comparison to silence
this warning
...((name ) == (((Scheme_Stx * ) (& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> const_names [j ] ) -> val ) )...
~ ^ ~
../../../racket/gc2/../src/compenv.c:1476:32: warning: equality comparison with extraneous parentheses
[-Wparentheses]
...(((name ) == (((Scheme_Stx * ) (& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> const_names [j ] ) -> val )...
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compenv.c:1476:32: note: use '=' to turn this equality comparison into an assignment
if (((name ) == (((Scheme_Stx * ) (& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> ...
^~
=
../../../racket/gc2/../src/compenv.c:1476:32: note: remove extraneous parentheses around the comparison to silence
this warning
...((name ) == (((Scheme_Stx * ) (& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> const_names [j ] ) -> val ) )...
~ ^ ~
../../../racket/gc2/../src/compenv.c:1488:32: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((name ) == (((Scheme_Stx * ) env -> values [j ] ) -> val ) ) ) {
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compenv.c:1488:32: note: use '=' to turn this equality comparison into an assignment
if (((name ) == (((Scheme_Stx * ) env -> values [j ] ) -> val ) ) ) {
^~
=
../../../racket/gc2/../src/compenv.c:1488:32: note: remove extraneous parentheses around the comparison to silence
this warning
if (((name ) == (((Scheme_Stx * ) env -> values [j ] ) -> val ) ) ) {
~ ^ ~
../../../racket/gc2/../src/compenv.c:1543:26: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((uid ) ) == (scheme_false ) ) )
~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compenv.c:1543:26: note: use '=' to turn this equality comparison into an assignment
if ((((uid ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/compenv.c:1543:26: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((uid ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/compenv.c:1763:26: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((val ) ) == (scheme_false ) ) ) {
~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compenv.c:1763:26: note: use '=' to turn this equality comparison into an assignment
if ((((val ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/compenv.c:1763:26: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((val ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/compenv.c:1795:18: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((modidx ) == (scheme_undefined ) ) ) {
~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compenv.c:1795:18: note: use '=' to turn this equality comparison into an assignment
if (((modidx ) == (scheme_undefined ) ) ) {
^~
=
../../../racket/gc2/../src/compenv.c:1795:18: note: remove extraneous parentheses around the comparison to silence
this warning
if (((modidx ) == (scheme_undefined ) ) ) {
~ ^ ~
../../../racket/gc2/../src/compenv.c:2121:111: warning: equality comparison with extraneous parentheses
[-Wparentheses]
...(((((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [0 ] ) ) == (scheme_false )...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compenv.c:2121:111: note: use '=' to turn this equality comparison into an assignment
...* ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [0 ] ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/compenv.c:2121:111: note: remove extraneous parentheses around the comparison to silence
this warning
...((((((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [0 ] ) ) == (scheme_false ) )...
~ ^ ~
../../../racket/gc2/../src/compenv.c:2147:40: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
cp = * (Scheme_Lift_Capture_Proc * ) (((Scheme_Vector * ) (vec ) ) -> els ) [1 ] ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:2148:10: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
data = (((Scheme_Vector * ) (vec ) ) -> els ) [2 ] ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:2188:10: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
return (((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [4 ] ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:2199:14: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& (! ((((((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [3 ...
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:2212:8: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL(SETUP_XfOrM508(_), scheme_make_pair (expr , (((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [3 ] ) )...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compenv.c:239:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/compenv.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/compenv.c:2212:8: note: instantiated from:
...FUNCCALL(SETUP_XfOrM508(_), scheme_make_pair (expr , (((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [3...
^ ~
../../../racket/gc2/../src/compenv.c:239:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/compenv.c:2212:8: note: instantiated from:
...FUNCCALL(SETUP_XfOrM508(_), scheme_make_pair (expr , (((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [3...
^ ~
../../../racket/gc2/../src/compenv.c:2212:61: note: instantiated from:
...(expr , (((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [3 ] ) ...
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:2213:3: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [3 ] = pr ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:2230:14: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& (! ((((((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [5 ...
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:2231:14: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
data = (((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [5 ] ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:2253:8: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL(SETUP_XfOrM513(_), scheme_make_pair (form , (((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [6 ] ) )...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compenv.c:239:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/compenv.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/compenv.c:2253:8: note: instantiated from:
...FUNCCALL(SETUP_XfOrM513(_), scheme_make_pair (form , (((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [6...
^ ~
../../../racket/gc2/../src/compenv.c:239:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/compenv.c:2253:8: note: instantiated from:
...FUNCCALL(SETUP_XfOrM513(_), scheme_make_pair (form , (((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [6...
^ ~
../../../racket/gc2/../src/compenv.c:2253:61: note: instantiated from:
...(form , (((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [6 ] ) ...
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:2254:3: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [6 ] = pr ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:2275:14: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& (! ((((((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [7 ...
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:2294:8: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL(SETUP_XfOrM522(_), scheme_make_pair (form , (((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [7 ] ) )...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compenv.c:239:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/compenv.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/compenv.c:2294:8: note: instantiated from:
...FUNCCALL(SETUP_XfOrM522(_), scheme_make_pair (form , (((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [7...
^ ~
../../../racket/gc2/../src/compenv.c:239:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/compenv.c:2294:8: note: instantiated from:
...FUNCCALL(SETUP_XfOrM522(_), scheme_make_pair (form , (((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [7...
^ ~
../../../racket/gc2/../src/compenv.c:2294:61: note: instantiated from:
...(form , (((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [7 ] ) ...
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:2295:3: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) ((& ((Scheme_Full_Comp_Env * ) env ) -> data ) -> lifts ) ) -> els ) [7 ] = pr ;
^ ~
In file included from xsrc/compenv.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compenv.c:2350:47: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((((Scheme_Stx * ) sym ) -> val ) == (((Scheme_Stx * ) frame -> values [i ] ) -> val ) ) ) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compenv.c:2350:47: note: use '=' to turn this equality comparison into an assignment
if (((((Scheme_Stx * ) sym ) -> val ) == (((Scheme_Stx * ) frame -> values [i ] ) -> val ) ) ) {
^~
=
../../../racket/gc2/../src/compenv.c:2350:47: note: remove extraneous parentheses around the comparison to silence
this warning
if (((((Scheme_Stx * ) sym ) -> val ) == (((Scheme_Stx * ) frame -> values [i ] ) -> val ) ) ) {
~ ^ ~
../../../racket/gc2/../src/compenv.c:2352:27: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((prop ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compenv.c:2352:27: note: use '=' to turn this equality comparison into an assignment
if ((((prop ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/compenv.c:2352:27: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((prop ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/compenv.c:2373:49: warning: equality comparison with extraneous parentheses
[-Wparentheses]
...(((Scheme_Stx * ) sym ) -> val ) == (((Scheme_Stx * ) (& ((Scheme_Full_Comp_Env * ) frame ) -> data ) -> const_names [i ] ) -> val )...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compenv.c:2373:49: note: use '=' to turn this equality comparison into an assignment
if (((((Scheme_Stx * ) sym ) -> val ) == (((Scheme_Stx * ) (& ((Scheme_Full_Comp_Env * ) frame ) ...
^~
=
../../../racket/gc2/../src/compenv.c:2373:49: note: remove extraneous parentheses around the comparison to silence
this warning
...((((Scheme_Stx * ) sym ) -> val ) == (((Scheme_Stx * ) (& ((Scheme_Full_Comp_Env * ) frame ) -> data ) -> const_names [i ] ) -> val ) )...
~ ^ ~
../../../racket/gc2/../src/compenv.c:2377:29: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((prop ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compenv.c:2377:29: note: use '=' to turn this equality comparison into an assignment
if ((((prop ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/compenv.c:2377:29: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((prop ) ) == (scheme_false ) ) ) {
~ ^ ~
48 warnings generated.
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/compile.c ../../../racket/gc2/../src/compile.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/compile.c -o compile.o
../../../racket/gc2/../src/compile.c:453:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [1 ] = cstx -> srcloc -> src ;
^ ~
In file included from xsrc/compile.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compile.c:455:7: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [2 ] = ((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ...
^ ~
In file included from xsrc/compile.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compile.c:456:7: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [3 ] = ((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ...
^ ~
In file included from xsrc/compile.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compile.c:458:7: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [2 ] = scheme_false ;
^ ~
In file included from xsrc/compile.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compile.c:459:7: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [3 ] = scheme_false ;
^ ~
In file included from xsrc/compile.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compile.c:462:7: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [4 ] = ((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ...
^ ~
In file included from xsrc/compile.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compile.c:464:5: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [4 ] = scheme_false ;
^ ~
In file included from xsrc/compile.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compile.c:466:7: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [5 ] = ((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ...
^ ~
In file included from xsrc/compile.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compile.c:468:5: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [5 ] = scheme_false ;
^ ~
In file included from xsrc/compile.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compile.c:469:5: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [6 ] = (src_based_name ? scheme_true : scheme_false ) ;
^ ~
In file included from xsrc/compile.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compile.c:785:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [1 ] = val ;
^ ~
In file included from xsrc/compile.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compile.c:882:21: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((test ) ) == (scheme_false ) ) )
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compile.c:882:21: note: use '=' to turn this equality comparison into an assignment
if ((((test ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/compile.c:882:21: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((test ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/compile.c:936:21: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((test ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compile.c:936:21: note: use '=' to turn this equality comparison into an assignment
if ((((test ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/compile.c:936:21: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((test ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/compile.c:2477:73: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((((Scheme_Simple_Object * ) (body ) ) -> u . pair_val . cdr ) ) == (scheme_null ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compile.c:2477:73: note: use '=' to turn this equality comparison into an assignment
if ((((((Scheme_Simple_Object * ) (body ) ) -> u . pair_val . cdr ) ) == (scheme_null ) ) )
^~
=
../../../racket/gc2/../src/compile.c:2477:73: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((((Scheme_Simple_Object * ) (body ) ) -> u . pair_val . cdr ) ) == (scheme_null ) ) )
~ ^ ~
../../../racket/gc2/../src/compile.c:2790:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [1 ] = dummy ;
^ ~
In file included from xsrc/compile.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compile.c:2791:3: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [2 ] = names ;
^ ~
In file included from xsrc/compile.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compile.c:2792:3: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [3 ] = val ;
^ ~
In file included from xsrc/compile.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/compile.c:3009:13: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((a ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compile.c:3009:13: note: use '=' to turn this equality comparison into an assignment
if (((a ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
^~
=
../../../racket/gc2/../src/compile.c:3009:13: note: remove extraneous parentheses around the comparison to silence
this warning
if (((a ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/compile.c:3013:21: warning: equality comparison with extraneous parentheses
[-Wparentheses]
...(results ) == (XFORM_OK_ASSIGN (scheme_get_thread_local_variables () -> scheme_current_thread_ ) -> values_buffer )...
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compile.c:3013:21: note: use '=' to turn this equality comparison into an assignment
if (((results ) == (XFORM_OK_ASSIGN (scheme_get_thread_local_variables () -> scheme_current_thread_ ) ...
^~
=
../../../racket/gc2/../src/compile.c:3013:21: note: remove extraneous parentheses around the comparison to silence
this warning
...((results ) == (XFORM_OK_ASSIGN (scheme_get_thread_local_variables () -> scheme_current_thread_ ) -> values_buffer ) )...
~ ^ ~
../../../racket/gc2/../src/compile.c:4145:17: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((var ) == (stop_expander ) ) ) {
~~~~~~~^~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compile.c:4145:17: note: use '=' to turn this equality comparison into an assignment
if (((var ) == (stop_expander ) ) ) {
^~
=
../../../racket/gc2/../src/compile.c:4145:17: note: remove extraneous parentheses around the comparison to silence
this warning
if (((var ) == (stop_expander ) ) ) {
~ ^ ~
../../../racket/gc2/../src/compile.c:4336:18: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((gval ) == (scheme_lambda_syntax ) ) ) {
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compile.c:4336:18: note: use '=' to turn this equality comparison into an assignment
if (((gval ) == (scheme_lambda_syntax ) ) ) {
^~
=
../../../racket/gc2/../src/compile.c:4336:18: note: remove extraneous parentheses around the comparison to silence
this warning
if (((gval ) == (scheme_lambda_syntax ) ) ) {
~ ^ ~
../../../racket/gc2/../src/compile.c:4507:16: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((form ) == (naya ) ) )
~~~~~~~~^~~~~~~~~~
../../../racket/gc2/../src/compile.c:4507:16: note: use '=' to turn this equality comparison into an assignment
if (((form ) == (naya ) ) )
^~
=
../../../racket/gc2/../src/compile.c:4507:16: note: remove extraneous parentheses around the comparison to silence
this warning
if (((form ) == (naya ) ) )
~ ^ ~
../../../racket/gc2/../src/compile.c:4706:13: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((l ) == (scheme_null ) ) )
~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compile.c:4706:13: note: use '=' to turn this equality comparison into an assignment
if (((l ) == (scheme_null ) ) )
^~
=
../../../racket/gc2/../src/compile.c:4706:13: note: remove extraneous parentheses around the comparison to silence
this warning
if (((l ) == (scheme_null ) ) )
~ ^ ~
../../../racket/gc2/../src/compile.c:4814:13: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((l ) == (scheme_null ) ) ) {
~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compile.c:4814:13: note: use '=' to turn this equality comparison into an assignment
if (((l ) == (scheme_null ) ) ) {
^~
=
../../../racket/gc2/../src/compile.c:4814:13: note: remove extraneous parentheses around the comparison to silence
this warning
if (((l ) == (scheme_null ) ) ) {
~ ^ ~
../../../racket/gc2/../src/compile.c:4940:18: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((gval ) == (scheme_begin_syntax ) ) ) {
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compile.c:4940:18: note: use '=' to turn this equality comparison into an assignment
if (((gval ) == (scheme_begin_syntax ) ) ) {
^~
=
../../../racket/gc2/../src/compile.c:4940:18: note: remove extraneous parentheses around the comparison to silence
this warning
if (((gval ) == (scheme_begin_syntax ) ) ) {
~ ^ ~
../../../racket/gc2/../src/compile.c:5162:26: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((gval ) == (scheme_begin_syntax ) ) ) {
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compile.c:5162:26: note: use '=' to turn this equality comparison into an assignment
if (((gval ) == (scheme_begin_syntax ) ) ) {
^~
=
../../../racket/gc2/../src/compile.c:5162:26: note: remove extraneous parentheses around the comparison to silence
this warning
if (((gval ) == (scheme_begin_syntax ) ) ) {
~ ^ ~
../../../racket/gc2/../src/compile.c:5265:23: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((pre_exprs ) == (scheme_null ) ) )
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/compile.c:5265:23: note: use '=' to turn this equality comparison into an assignment
if (((pre_exprs ) == (scheme_null ) ) )
^~
=
../../../racket/gc2/../src/compile.c:5265:23: note: remove extraneous parentheses around the comparison to silence
this warning
if (((pre_exprs ) == (scheme_null ) ) )
~ ^ ~
27 warnings generated.
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/complex.c ../../../racket/gc2/../src/complex.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/complex.c -o complex.o
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/dynext.c ../../../racket/gc2/../src/dynext.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/dynext.c -o dynext.o
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/env.c ../../../racket/gc2/../src/env.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/env.c -o env.o
../../../racket/gc2/../src/env.c:808:15: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((env ) == (env -> exp_env ) ) ) {
~~~~~~~^~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/env.c:808:15: note: use '=' to turn this equality comparison into an assignment
if (((env ) == (env -> exp_env ) ) ) {
^~
=
../../../racket/gc2/../src/env.c:808:15: note: remove extraneous parentheses around the comparison to silence this
warning
if (((env ) == (env -> exp_env ) ) ) {
~ ^ ~
../../../racket/gc2/../src/env.c:834:25: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((modchain ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/env.c:834:25: note: use '=' to turn this equality comparison into an assignment
if ((((modchain ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/env.c:834:25: note: remove extraneous parentheses around the comparison to silence this
warning
if ((((modchain ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/env.c:833:16: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
modchain = (((Scheme_Vector * ) (env -> modchain ) ) -> els ) [1 ] ;
^ ~
In file included from xsrc/env.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/env.c:840:7: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (env -> modchain ) ) -> els ) [1 ] = modchain ;
^ ~
In file included from xsrc/env.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/env.c:841:7: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (modchain ) ) -> els ) [2 ] = env -> modchain ;
^ ~
In file included from xsrc/env.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/env.c:874:25: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((modchain ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/env.c:874:25: note: use '=' to turn this equality comparison into an assignment
if ((((modchain ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/env.c:874:25: note: remove extraneous parentheses around the comparison to silence this
warning
if ((((modchain ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/env.c:873:16: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
modchain = (((Scheme_Vector * ) (env -> modchain ) ) -> els ) [2 ] ;
^ ~
In file included from xsrc/env.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/env.c:880:7: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (env -> modchain ) ) -> els ) [2 ] = modchain ;
^ ~
In file included from xsrc/env.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/env.c:881:7: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (modchain ) ) -> els ) [1 ] = env -> modchain ;
^ ~
In file included from xsrc/env.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/env.c:915:5: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (modchain ) ) -> els ) [2 ] = modchain ;
^ ~
In file included from xsrc/env.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/env.c:916:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (modchain ) ) -> els ) [1 ] = modchain ;
^ ~
In file included from xsrc/env.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/env.c:973:27: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((menv -> exp_env ) == (menv ) ) ) {
~~~~~~~~~~~~~~~~~~~^~~~~~~~~~
../../../racket/gc2/../src/env.c:973:27: note: use '=' to turn this equality comparison into an assignment
if (((menv -> exp_env ) == (menv ) ) ) {
^~
=
../../../racket/gc2/../src/env.c:973:27: note: remove extraneous parentheses around the comparison to silence this
warning
if (((menv -> exp_env ) == (menv ) ) ) {
~ ^ ~
../../../racket/gc2/../src/env.c:981:27: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((modchain ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/env.c:981:27: note: use '=' to turn this equality comparison into an assignment
if ((((modchain ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/env.c:981:27: note: remove extraneous parentheses around the comparison to silence this
warning
if ((((modchain ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/env.c:980:18: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
modchain = (((Scheme_Vector * ) (modchain ) ) -> els ) [1 ] ;
^ ~
In file included from xsrc/env.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/env.c:987:9: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (menv2 -> modchain ) ) -> els ) [1 ] = modchain ;
^ ~
In file included from xsrc/env.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/env.c:988:9: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (modchain ) ) -> els ) [2 ] = menv2 -> modchain ;
^ ~
In file included from xsrc/env.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/env.c:1055:12: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
next = (((Scheme_Vector * ) (modchain ) ) -> els ) [1 ] ;
^ ~
In file included from xsrc/env.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/env.c:1056:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (modchain ) ) -> els ) [1 ] = scheme_void ;
^ ~
In file included from xsrc/env.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/env.c:1409:31: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if ((((argv [0 ] ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/env.c:1409:31: note: use '=' to turn this equality comparison into an assignment
else if ((((argv [0 ] ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/env.c:1409:31: note: remove extraneous parentheses around the comparison to silence this
warning
else if ((((argv [0 ] ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/env.c:2030:16: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((v ) ) == (scheme_false ) ) ) {
~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/env.c:2030:16: note: use '=' to turn this equality comparison into an assignment
if ((((v ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/env.c:2030:16: note: remove extraneous parentheses around the comparison to silence this
warning
if ((((v ) ) == (scheme_false ) ) ) {
~ ^ ~
20 warnings generated.
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/error.c ../../../racket/gc2/../src/error.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/error.c -o error.o
../../../racket/gc2/../src/error.c:713:29: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((display_handler ) == (default_display_handler ) ) )
~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/error.c:713:29: note: use '=' to turn this equality comparison into an assignment
if (((display_handler ) == (default_display_handler ) ) )
^~
=
../../../racket/gc2/../src/error.c:713:29: note: remove extraneous parentheses around the comparison to silence
this warning
if (((display_handler ) == (default_display_handler ) ) )
~ ^ ~
../../../racket/gc2/../src/error.c:1713:20: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((who ) ) == (scheme_false ) ) )
~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/error.c:1713:20: note: use '=' to turn this equality comparison into an assignment
if ((((who ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/error.c:1713:20: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((who ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/error.c:1736:19: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((form ) ) == (scheme_false ) ) )
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/error.c:1736:19: note: use '=' to turn this equality comparison into an assignment
if ((((form ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/error.c:1736:19: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((form ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/error.c:2450:13: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL(SETUP_XfOrM332(_), scheme_write_proc_context (port , print_width , name , sloc -> slots [0 ] , sloc -> slots [1 ] , sloc -> slots [2 ] , sloc -> slots [3 ] , 0 ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/error.c:2400:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_each(s, x)
^
../../../racket/gc2/../src/error.c:2450:13: note: instantiated from:
...FUNCCALL(SETUP_XfOrM332(_), scheme_write_proc_context (port , print_width , name , sloc -> slots [0 ] , sloc -> slots [1...
^ ~
../../../racket/gc2/../src/error.c:2450:117: note: instantiated from:
...(port , print_width , name , sloc -> slots [0 ] , sloc -> slots [1 ] , sloc -> slots [2 ] , sloc -> slots ...
^ ~
In file included from xsrc/error.c:1:
../../../racket/gc2/../src/schpriv.h:721:19: note: array 'slots' declared here
Scheme_Object * slots [1 ] ;
^
../../../racket/gc2/../src/error.c:2450:13: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL(SETUP_XfOrM332(_), scheme_write_proc_context (port , print_width , name , sloc -> slots [0 ] , sloc -> slots [1 ] , sloc -> slots [2 ] , sloc -> slots [3 ] , 0 ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/error.c:2400:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_each(s, x)
^
../../../racket/gc2/../src/error.c:2450:13: note: instantiated from:
...FUNCCALL(SETUP_XfOrM332(_), scheme_write_proc_context (port , print_width , name , sloc -> slots [0 ] , sloc -> slots [1 ] , sloc -> slots [2...
^ ~
../../../racket/gc2/../src/error.c:2450:138: note: instantiated from:
..., name , sloc -> slots [0 ] , sloc -> slots [1 ] , sloc -> slots [2 ] , sloc -> slots [3 ] , 0 ) )
^ ~
In file included from xsrc/error.c:1:
../../../racket/gc2/../src/schpriv.h:721:19: note: array 'slots' declared here
Scheme_Object * slots [1 ] ;
^
../../../racket/gc2/../src/error.c:2450:13: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL(SETUP_XfOrM332(_), scheme_write_proc_context (port , print_width , name , sloc -> slots [0 ] , sloc -> slots [1 ] , sloc -> slots [2 ] , sloc -> slots [3 ] , 0 ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/error.c:2400:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_each(s, x)
^
../../../racket/gc2/../src/error.c:2450:13: note: instantiated from:
...FUNCCALL(SETUP_XfOrM332(_), scheme_write_proc_context (port , print_width , name , sloc -> slots [0 ] , sloc -> slots [1 ] , sloc -> slots [2 ] , sloc -> slots [3...
^ ~
../../../racket/gc2/../src/error.c:2450:159: note: instantiated from:
..., name , sloc -> slots [0 ] , sloc -> slots [1 ] , sloc -> slots [2 ] , sloc -> slots [3 ] , 0 ) )
^ ~
In file included from xsrc/error.c:1:
../../../racket/gc2/../src/schpriv.h:721:19: note: array 'slots' declared here
Scheme_Object * slots [1 ] ;
^
../../../racket/gc2/../src/error.c:2506:15: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((pph ) == (scheme_default_global_print_handler ) ) ) {
~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/error.c:2506:15: note: use '=' to turn this equality comparison into an assignment
if (((pph ) == (scheme_default_global_print_handler ) ) ) {
^~
=
../../../racket/gc2/../src/error.c:2506:15: note: remove extraneous parentheses around the comparison to silence
this warning
if (((pph ) == (scheme_default_global_print_handler ) ) ) {
~ ^ ~
../../../racket/gc2/../src/error.c:2904:13: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (msg ) ) -> els ) [1 ] = v ;
^ ~
In file included from xsrc/error.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/error.c:2905:13: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (msg ) ) -> els ) [2 ] = (data ? data : scheme_false ) ;
^ ~
In file included from xsrc/error.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/error.c:2999:13: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((v ) == (fatal_symbol ) ) )
~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/error.c:2999:13: note: use '=' to turn this equality comparison into an assignment
if (((v ) == (fatal_symbol ) ) )
^~
=
../../../racket/gc2/../src/error.c:2999:13: note: remove extraneous parentheses around the comparison to silence
this warning
if (((v ) == (fatal_symbol ) ) )
~ ^ ~
../../../racket/gc2/../src/error.c:3001:18: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((v ) == (error_symbol ) ) )
~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/error.c:3001:18: note: use '=' to turn this equality comparison into an assignment
else if (((v ) == (error_symbol ) ) )
^~
=
../../../racket/gc2/../src/error.c:3001:18: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((v ) == (error_symbol ) ) )
~ ^ ~
../../../racket/gc2/../src/error.c:3003:18: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((v ) == (warning_symbol ) ) )
~~~~~^~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/error.c:3003:18: note: use '=' to turn this equality comparison into an assignment
else if (((v ) == (warning_symbol ) ) )
^~
=
../../../racket/gc2/../src/error.c:3003:18: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((v ) == (warning_symbol ) ) )
~ ^ ~
../../../racket/gc2/../src/error.c:3005:18: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((v ) == (info_symbol ) ) )
~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/error.c:3005:18: note: use '=' to turn this equality comparison into an assignment
else if (((v ) == (info_symbol ) ) )
^~
=
../../../racket/gc2/../src/error.c:3005:18: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((v ) == (info_symbol ) ) )
~ ^ ~
../../../racket/gc2/../src/error.c:3007:18: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((v ) == (debug_symbol ) ) )
~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/error.c:3007:18: note: use '=' to turn this equality comparison into an assignment
else if (((v ) == (debug_symbol ) ) )
^~
=
../../../racket/gc2/../src/error.c:3007:18: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((v ) == (debug_symbol ) ) )
~ ^ ~
../../../racket/gc2/../src/error.c:3068:28: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((argv [1 ] ) ) == (scheme_false ) ) )
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/error.c:3068:28: note: use '=' to turn this equality comparison into an assignment
if ((((argv [1 ] ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/error.c:3068:28: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((argv [1 ] ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/error.c:3295:98: warning: equality comparison with extraneous parentheses
[-Wparentheses]
...(((((Scheme_Simple_Object * ) ((Scheme_Object * ) old_exn ) ) -> u . pair_val . car ) ) ) == (scheme_false )...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/error.c:3295:98: note: use '=' to turn this equality comparison into an assignment
if (((((((Scheme_Simple_Object * ) ((Scheme_Object * ) old_exn ) ) -> u . pair_val . car ) ) ) == ...
^~
=
../../../racket/gc2/../src/error.c:3295:98: note: remove extraneous parentheses around the comparison to silence
this warning
...((((((Scheme_Simple_Object * ) ((Scheme_Object * ) old_exn ) ) -> u . pair_val . car ) ) ) == (scheme_false ) )...
~ ^ ~
../../../racket/gc2/../src/error.c:3448:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
((Scheme_Structure * ) arg ) -> slots [1 ] = marks ;
^ ~
In file included from xsrc/error.c:1:
../../../racket/gc2/../src/schpriv.h:721:19: note: array 'slots' declared here
Scheme_Object * slots [1 ] ;
^
17 warnings generated.
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/eval.c ../../../racket/gc2/../src/eval.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/eval.c -o eval.o
../../../racket/gc2/../src/eval.c:711:19: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((expr ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:711:19: note: use '=' to turn this equality comparison into an assignment
if ((((expr ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/eval.c:711:19: note: remove extraneous parentheses around the comparison to silence this
warning
if ((((expr ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/eval.c:1618:16: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((vals ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:1618:16: note: use '=' to turn this equality comparison into an assignment
if (((vals ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
^~
=
../../../racket/gc2/../src/eval.c:1618:16: note: remove extraneous parentheses around the comparison to silence
this warning
if (((vals ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/eval.c:1627:22: warning: equality comparison with extraneous parentheses [-Wparentheses]
...(values ) == (XFORM_OK_ASSIGN (scheme_get_thread_local_variables () -> scheme_current_thread_ ) -> values_buffer )...
~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:1627:22: note: use '=' to turn this equality comparison into an assignment
if (((values ) == (XFORM_OK_ASSIGN (scheme_get_thread_local_variables () -> scheme_current_thread_ ) ...
^~
=
../../../racket/gc2/../src/eval.c:1627:22: note: remove extraneous parentheses around the comparison to silence
this warning
...((values ) == (XFORM_OK_ASSIGN (scheme_get_thread_local_variables () -> scheme_current_thread_ ) -> values_buffer ) )...
~ ^ ~
../../../racket/gc2/../src/eval.c:1659:120: warning: equality comparison with extraneous parentheses
[-Wparentheses]
...(XFORM_OK_ASSIGN (scheme_get_thread_local_variables () -> scheme_current_thread_ ) -> ku . multiple . array ) == (XFORM_OK_ASSIGN (scheme_get_thread_local_variables () -> scheme_current_thread_ ) -> values_buffer )...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:1659:120: note: use '=' to turn this equality comparison into an assignment
.... multiple . array ) == (XFORM_OK_ASSIGN (scheme_get_thread_local_variables () -> scheme_current_thread_ ) ...
^~
=
../../../racket/gc2/../src/eval.c:1659:120: note: remove extraneous parentheses around the comparison to silence
this warning
...((XFORM_OK_ASSIGN (scheme_get_thread_local_variables () -> scheme_current_thread_ ) -> ku . multiple . array ) == (XFORM_OK_ASSIGN (scheme_get_thread_local_variables () -> scheme_current_thread_ ) -> values_buffer ) )...
~ ^ ~
../../../racket/gc2/../src/eval.c:1804:13: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:1804:13: note: use '=' to turn this equality comparison into an assignment
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
^~
=
../../../racket/gc2/../src/eval.c:1804:13: note: remove extraneous parentheses around the comparison to silence
this warning
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/eval.c:1810:42: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:1810:42: note: use '=' to turn this equality comparison into an assignment
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
^~
=
../../../racket/gc2/../src/eval.c:1810:42: note: remove extraneous parentheses around the comparison to silence
this warning
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~ ^ ~
../../../racket/gc2/../src/eval.c:1921:13: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:1921:13: note: use '=' to turn this equality comparison into an assignment
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
^~
=
../../../racket/gc2/../src/eval.c:1921:13: note: remove extraneous parentheses around the comparison to silence
this warning
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/eval.c:1925:16: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((mv ) == (p -> values_buffer ) ) )
~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:1925:16: note: use '=' to turn this equality comparison into an assignment
if (((mv ) == (p -> values_buffer ) ) )
^~
=
../../../racket/gc2/../src/eval.c:1925:16: note: remove extraneous parentheses around the comparison to silence
this warning
if (((mv ) == (p -> values_buffer ) ) )
~ ^ ~
../../../racket/gc2/../src/eval.c:1989:28: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
rp = (Resolve_Prefix * ) (((Scheme_Vector * ) (form ) ) -> els ) [1 ] ;
^ ~
In file included from xsrc/eval.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/eval.c:1990:22: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
base_stack_depth = (((Scheme_Vector * ) (form ) ) -> els ) [2 ] ;
^ ~
In file included from xsrc/eval.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/eval.c:1998:15: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
dummy = (((Scheme_Vector * ) (form ) ) -> els ) [3 ] ;
^ ~
In file included from xsrc/eval.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/eval.c:2007:11: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
dummy = (((Scheme_Vector * ) (form ) ) -> els ) [3 ] ;
^ ~
In file included from xsrc/eval.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/eval.c:2142:7: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL_EMPTY(scheme_validate_closure (((void * ) 0 ) , (Scheme_Object * ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [2 ] , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [3 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [4 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [5 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] ) ) == (scheme_false ) ) ) ? (void * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] : ((void * ) 0 ) ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [6 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] ) ) == (scheme_false ) ) ) ? (Scheme_Hash_Tree * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] : ((void * ) 0 ) ) ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:2132:28: note: instantiated from:
# define FUNCCALL_EMPTY(x) FUNCCALL_EMPTY_each(x)
^
../../../racket/gc2/../src/eval.c:2142:7: note: instantiated from:
...FUNCCALL_EMPTY(scheme_validate_closure (((void * ) 0 ) , (Scheme_Object * ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1...
^ ~
../../../racket/gc2/../src/eval.c:2142:100: note: instantiated from:
...* ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) ...
^ ~
In file included from xsrc/eval.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/eval.c:2142:7: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL_EMPTY(scheme_validate_closure (((void * ) 0 ) , (Scheme_Object * ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [2 ] , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [3 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [4 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [5 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] ) ) == (scheme_false ) ) ) ? (void * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] : ((void * ) 0 ) ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [6 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] ) ) == (scheme_false ) ) ) ? (Scheme_Hash_Tree * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] : ((void * ) 0 ) ) ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:2132:28: note: instantiated from:
# define FUNCCALL_EMPTY(x) FUNCCALL_EMPTY_each(x)
^
../../../racket/gc2/../src/eval.c:2142:7: note: instantiated from:
...FUNCCALL_EMPTY(scheme_validate_closure (((void * ) 0 ) , (Scheme_Object * ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [2...
^ ~
../../../racket/gc2/../src/eval.c:2142:164: note: instantiated from:
...) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [2 ] , (((intptr_t ) ((((Scheme_Vector * ...
^ ~
In file included from xsrc/eval.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/eval.c:2142:7: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL_EMPTY(scheme_validate_closure (((void * ) 0 ) , (Scheme_Object * ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [2 ] , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [3 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [4 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [5 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] ) ) == (scheme_false ) ) ) ? (void * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] : ((void * ) 0 ) ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [6 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] ) ) == (scheme_false ) ) ) ? (Scheme_Hash_Tree * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] : ((void * ) 0 ) ) ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:2132:28: note: instantiated from:
# define FUNCCALL_EMPTY(x) FUNCCALL_EMPTY_each(x)
^
../../../racket/gc2/../src/eval.c:2142:7: note: instantiated from:
...FUNCCALL_EMPTY(scheme_validate_closure (((void * ) 0 ) , (Scheme_Object * ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [2 ] , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [3...
^ ~
../../../racket/gc2/../src/eval.c:2142:227: note: instantiated from:
...) -> els ) [2 ] , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [3 ] ) ) >> 1 ) , (((intptr_t ) ...
^ ~
In file included from xsrc/eval.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/eval.c:2142:7: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL_EMPTY(scheme_validate_closure (((void * ) 0 ) , (Scheme_Object * ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [2 ] , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [3 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [4 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [5 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] ) ) == (scheme_false ) ) ) ? (void * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] : ((void * ) 0 ) ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [6 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] ) ) == (scheme_false ) ) ) ? (Scheme_Hash_Tree * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] : ((void * ) 0 ) ) ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:2132:28: note: instantiated from:
# define FUNCCALL_EMPTY(x) FUNCCALL_EMPTY_each(x)
^
../../../racket/gc2/../src/eval.c:2142:7: note: instantiated from:
...FUNCCALL_EMPTY(scheme_validate_closure (((void * ) 0 ) , (Scheme_Object * ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [2 ] , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [3 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [4...
^ ~
../../../racket/gc2/../src/eval.c:2142:301: note: instantiated from:
...[3 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [4 ] ) ) >> 1 ) , (((intptr_t ) ...
^ ~
In file included from xsrc/eval.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/eval.c:2142:7: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL_EMPTY(scheme_validate_closure (((void * ) 0 ) , (Scheme_Object * ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [2 ] , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [3 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [4 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [5 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] ) ) == (scheme_false ) ) ) ? (void * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] : ((void * ) 0 ) ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [6 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] ) ) == (scheme_false ) ) ) ? (Scheme_Hash_Tree * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] : ((void * ) 0 ) ) ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:2132:28: note: instantiated from:
# define FUNCCALL_EMPTY(x) FUNCCALL_EMPTY_each(x)
^
../../../racket/gc2/../src/eval.c:2142:7: note: instantiated from:
...FUNCCALL_EMPTY(scheme_validate_closure (((void * ) 0 ) , (Scheme_Object * ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [2 ] , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [3 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [4 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [5...
^ ~
../../../racket/gc2/../src/eval.c:2142:375: note: instantiated from:
...) -> els ) [4 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [5 ] ) ) >> 1 ) , ((! ...
^ ~
In file included from xsrc/eval.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/eval.c:2142:7: warning: array index of '8' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL_EMPTY(scheme_validate_closure (((void * ) 0 ) , (Scheme_Object * ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [2 ] , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [3 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [4 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [5 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] ) ) == (scheme_false ) ) ) ? (void * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] : ((void * ) 0 ) ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [6 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] ) ) == (scheme_false ) ) ) ? (Scheme_Hash_Tree * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] : ((void * ) 0 ) ) ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:2132:28: note: instantiated from:
# define FUNCCALL_EMPTY(x) FUNCCALL_EMPTY_each(x)
^
../../../racket/gc2/../src/eval.c:2142:7: note: instantiated from:
...FUNCCALL_EMPTY(scheme_validate_closure (((void * ) 0 ) , (Scheme_Object * ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [2 ] , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [3 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [4 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [5 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [8...
^ ~
../../../racket/gc2/../src/eval.c:2142:441: note: instantiated from:
...els ) [5 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] ) ) == (scheme_false ) ) ) ? ...
^ ~
In file included from xsrc/eval.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/eval.c:2142:7: warning: array index of '8' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL_EMPTY(scheme_validate_closure (((void * ) 0 ) , (Scheme_Object * ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [2 ] , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [3 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [4 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [5 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] ) ) == (scheme_false ) ) ) ? (void * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] : ((void * ) 0 ) ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [6 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] ) ) == (scheme_false ) ) ) ? (Scheme_Hash_Tree * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] : ((void * ) 0 ) ) ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:2132:28: note: instantiated from:
# define FUNCCALL_EMPTY(x) FUNCCALL_EMPTY_each(x)
^
../../../racket/gc2/../src/eval.c:2142:7: note: instantiated from:
...FUNCCALL_EMPTY(scheme_validate_closure (((void * ) 0 ) , (Scheme_Object * ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [2 ] , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [3 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [4 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [5 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] ) ) == (scheme_false ) ) ) ? (void * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [8...
^ ~
../../../racket/gc2/../src/eval.c:2142:526: note: instantiated from:
...) ) == (scheme_false ) ) ) ? (void * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] : ((void * ) 0 ) ) , ...
^ ~
In file included from xsrc/eval.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/eval.c:2142:7: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL_EMPTY(scheme_validate_closure (((void * ) 0 ) , (Scheme_Object * ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [2 ] , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [3 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [4 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [5 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] ) ) == (scheme_false ) ) ) ? (void * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] : ((void * ) 0 ) ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [6 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] ) ) == (scheme_false ) ) ) ? (Scheme_Hash_Tree * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] : ((void * ) 0 ) ) ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:2132:28: note: instantiated from:
# define FUNCCALL_EMPTY(x) FUNCCALL_EMPTY_each(x)
^
../../../racket/gc2/../src/eval.c:2142:7: note: instantiated from:
...FUNCCALL_EMPTY(scheme_validate_closure (((void * ) 0 ) , (Scheme_Object * ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [2 ] , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [3 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [4 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [5 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] ) ) == (scheme_false ) ) ) ? (void * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] : ((void * ) 0 ) ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [6...
^ ~
../../../racket/gc2/../src/eval.c:2142:608: note: instantiated from:
...) [8 ] : ((void * ) 0 ) ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [6 ] ) ) >> 1 ) , ((! ...
^ ~
In file included from xsrc/eval.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/eval.c:2142:7: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL_EMPTY(scheme_validate_closure (((void * ) 0 ) , (Scheme_Object * ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [2 ] , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [3 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [4 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [5 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] ) ) == (scheme_false ) ) ) ? (void * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] : ((void * ) 0 ) ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [6 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] ) ) == (scheme_false ) ) ) ? (Scheme_Hash_Tree * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] : ((void * ) 0 ) ) ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:2132:28: note: instantiated from:
# define FUNCCALL_EMPTY(x) FUNCCALL_EMPTY_each(x)
^
../../../racket/gc2/../src/eval.c:2142:7: note: instantiated from:
...FUNCCALL_EMPTY(scheme_validate_closure (((void * ) 0 ) , (Scheme_Object * ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [2 ] , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [3 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [4 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [5 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] ) ) == (scheme_false ) ) ) ? (void * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] : ((void * ) 0 ) ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [6 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [7...
^ ~
../../../racket/gc2/../src/eval.c:2142:674: note: instantiated from:
...els ) [6 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] ) ) == (scheme_false ) ) ) ? ...
^ ~
In file included from xsrc/eval.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/eval.c:2142:7: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL_EMPTY(scheme_validate_closure (((void * ) 0 ) , (Scheme_Object * ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [2 ] , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [3 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [4 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [5 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] ) ) == (scheme_false ) ) ) ? (void * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] : ((void * ) 0 ) ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [6 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] ) ) == (scheme_false ) ) ) ? (Scheme_Hash_Tree * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] : ((void * ) 0 ) ) ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:2132:28: note: instantiated from:
# define FUNCCALL_EMPTY(x) FUNCCALL_EMPTY_each(x)
^
../../../racket/gc2/../src/eval.c:2142:7: note: instantiated from:
...FUNCCALL_EMPTY(scheme_validate_closure (((void * ) 0 ) , (Scheme_Object * ) data , (char * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [1 ] , (Validate_TLS ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [2 ] , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [3 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [4 ] ) ) >> 1 ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [5 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] ) ) == (scheme_false ) ) ) ? (void * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [8 ] : ((void * ) 0 ) ) , (((intptr_t ) ((((Scheme_Vector * ) (vinfo ) ) -> els ) [6 ] ) ) >> 1 ) , ((! ((((((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] ) ) == (scheme_false ) ) ) ? (Scheme_Hash_Tree * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [7...
^ ~
../../../racket/gc2/../src/eval.c:2142:771: note: instantiated from:
...(scheme_false ) ) ) ? (Scheme_Hash_Tree * ) (((Scheme_Vector * ) (vinfo ) ) -> els ) [7 ] : ((void * ) 0 ) ...
^ ~
In file included from xsrc/eval.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/eval.c:2716:23: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((v ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:2716:23: note: use '=' to turn this equality comparison into an assignment
if (((v ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
^~
=
../../../racket/gc2/../src/eval.c:2716:23: note: remove extraneous parentheses around the comparison to silence
this warning
if (((v ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/eval.c:3444:13: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((v ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:3444:13: note: use '=' to turn this equality comparison into an assignment
if (((v ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
^~
=
../../../racket/gc2/../src/eval.c:3444:13: note: remove extraneous parentheses around the comparison to silence
this warning
if (((v ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/eval.c:3455:13: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((v ) == (((Scheme_Object * ) 0x2 ) ) ) ) {
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:3455:13: note: use '=' to turn this equality comparison into an assignment
if (((v ) == (((Scheme_Object * ) 0x2 ) ) ) ) {
^~
=
../../../racket/gc2/../src/eval.c:3455:13: note: remove extraneous parentheses around the comparison to silence
this warning
if (((v ) == (((Scheme_Object * ) 0x2 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/eval.c:3464:13: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) )
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:3464:13: note: use '=' to turn this equality comparison into an assignment
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) )
^~
=
../../../racket/gc2/../src/eval.c:3464:13: note: remove extraneous parentheses around the comparison to silence
this warning
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) )
~ ^ ~
../../../racket/gc2/../src/eval.c:3641:22: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((gval ) == (scheme_begin_syntax ) ) ) {
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:3641:22: note: use '=' to turn this equality comparison into an assignment
if (((gval ) == (scheme_begin_syntax ) ) ) {
^~
=
../../../racket/gc2/../src/eval.c:3641:22: note: remove extraneous parentheses around the comparison to silence
this warning
if (((gval ) == (scheme_begin_syntax ) ) ) {
~ ^ ~
../../../racket/gc2/../src/eval.c:3693:11: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
seq -> array [1 ] = prev_o ;
^ ~
In file included from xsrc/eval.c:1:
../../../racket/gc2/../src/schpriv.h:1260:19: note: array 'array' declared here
Scheme_Object * array [1 ] ;
^
../../../racket/gc2/../src/eval.c:4473:26: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((argv [1 ] ) == (module_symbol ) ) )
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:4473:26: note: use '=' to turn this equality comparison into an assignment
else if (((argv [1 ] ) == (module_symbol ) ) )
^~
=
../../../racket/gc2/../src/eval.c:4473:26: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((argv [1 ] ) == (module_symbol ) ) )
~ ^ ~
../../../racket/gc2/../src/eval.c:4475:26: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((argv [1 ] ) == (module_begin_symbol ) ) )
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:4475:26: note: use '=' to turn this equality comparison into an assignment
else if (((argv [1 ] ) == (module_begin_symbol ) ) )
^~
=
../../../racket/gc2/../src/eval.c:4475:26: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((argv [1 ] ) == (module_begin_symbol ) ) )
~ ^ ~
../../../racket/gc2/../src/eval.c:4477:26: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((argv [1 ] ) == (top_level_symbol ) ) )
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:4477:26: note: use '=' to turn this equality comparison into an assignment
else if (((argv [1 ] ) == (top_level_symbol ) ) )
^~
=
../../../racket/gc2/../src/eval.c:4477:26: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((argv [1 ] ) == (top_level_symbol ) ) )
~ ^ ~
../../../racket/gc2/../src/eval.c:4479:26: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((argv [1 ] ) == (expression_symbol ) ) )
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:4479:26: note: use '=' to turn this equality comparison into an assignment
else if (((argv [1 ] ) == (expression_symbol ) ) )
^~
=
../../../racket/gc2/../src/eval.c:4479:26: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((argv [1 ] ) == (expression_symbol ) ) )
~ ^ ~
../../../racket/gc2/../src/eval.c:4518:79: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((((Scheme_Simple_Object * ) (rl ) ) -> u . pair_val . cdr ) ) == (scheme_null ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:4518:79: note: use '=' to turn this equality comparison into an assignment
if ((((((Scheme_Simple_Object * ) (rl ) ) -> u . pair_val . cdr ) ) == (scheme_null ) ) )
^~
=
../../../racket/gc2/../src/eval.c:4518:79: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((((Scheme_Simple_Object * ) (rl ) ) -> u . pair_val . cdr ) ) == (scheme_null ) ) )
~ ^ ~
../../../racket/gc2/../src/eval.c:4651:24: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((argv [2 ] ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:4651:24: note: use '=' to turn this equality comparison into an assignment
if ((((argv [2 ] ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/eval.c:4651:24: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((argv [2 ] ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/eval.c:4679:16: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((xl ) == (l ) ) ) {
~~~~~~^~~~~~~
../../../racket/gc2/../src/eval.c:4679:16: note: use '=' to turn this equality comparison into an assignment
if (((xl ) == (l ) ) ) {
^~
=
../../../racket/gc2/../src/eval.c:4679:16: note: remove extraneous parentheses around the comparison to silence
this warning
if (((xl ) == (l ) ) ) {
~ ^ ~
../../../racket/gc2/../src/eval.c:4856:18: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((expr ) == (scheme_eof ) ) )
~~~~~~~~^~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:4856:18: note: use '=' to turn this equality comparison into an assignment
if (((expr ) == (scheme_eof ) ) )
^~
=
../../../racket/gc2/../src/eval.c:4856:18: note: remove extraneous parentheses around the comparison to silence
this warning
if (((expr ) == (scheme_eof ) ) )
~ ^ ~
../../../racket/gc2/../src/eval.c:4878:46: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/eval.c:4878:46: note: use '=' to turn this equality comparison into an assignment
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
^~
=
../../../racket/gc2/../src/eval.c:4878:46: note: remove extraneous parentheses around the comparison to silence
this warning
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~ ^ ~
37 warnings generated.
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/file.c ../../../racket/gc2/../src/file.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/file.c -o file.o
../../../racket/gc2/../src/file.c:950:25: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((argv [which ] ) == (windows_symbol ) ) )
~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:950:25: note: use '=' to turn this equality comparison into an assignment
if (((argv [which ] ) == (windows_symbol ) ) )
^~
=
../../../racket/gc2/../src/file.c:950:25: note: remove extraneous parentheses around the comparison to silence this
warning
if (((argv [which ] ) == (windows_symbol ) ) )
~ ^ ~
../../../racket/gc2/../src/file.c:952:25: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((argv [which ] ) == (unix_symbol ) ) )
~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:952:25: note: use '=' to turn this equality comparison into an assignment
if (((argv [which ] ) == (unix_symbol ) ) )
^~
=
../../../racket/gc2/../src/file.c:952:25: note: remove extraneous parentheses around the comparison to silence this
warning
if (((argv [which ] ) == (unix_symbol ) ) )
~ ^ ~
../../../racket/gc2/../src/file.c:1230:36: warning: self-comparison always evaluates to true
[-Wtautological-compare]
while (((scheme_unix_path_type == scheme_unix_path_type ) ? (((((Scheme_Simple_Object * ) (fn ) ) -> u ...
^
../../../racket/gc2/../src/file.c:2568:35: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((s [offset + len - 1 ] ) == '/' ) )
~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~
../../../racket/gc2/../src/file.c:2568:35: note: use '=' to turn this equality comparison into an assignment
if (((s [offset + len - 1 ] ) == '/' ) )
^~
=
../../../racket/gc2/../src/file.c:2568:35: note: remove extraneous parentheses around the comparison to silence
this warning
if (((s [offset + len - 1 ] ) == '/' ) )
~ ^ ~
../../../racket/gc2/../src/file.c:2688:34: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((argv [i + idelta ] ) == (up_symbol ) ) ) {
~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:2688:34: note: use '=' to turn this equality comparison into an assignment
if (((argv [i + idelta ] ) == (up_symbol ) ) ) {
^~
=
../../../racket/gc2/../src/file.c:2688:34: note: remove extraneous parentheses around the comparison to silence
this warning
if (((argv [i + idelta ] ) == (up_symbol ) ) ) {
~ ^ ~
../../../racket/gc2/../src/file.c:2691:39: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((argv [i + idelta ] ) == (same_symbol ) ) ) {
~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:2691:39: note: use '=' to turn this equality comparison into an assignment
else if (((argv [i + idelta ] ) == (same_symbol ) ) ) {
^~
=
../../../racket/gc2/../src/file.c:2691:39: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((argv [i + idelta ] ) == (same_symbol ) ) ) {
~ ^ ~
../../../racket/gc2/../src/file.c:2812:35: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((simp ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:2812:35: note: use '=' to turn this equality comparison into an assignment
if ((((simp ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/file.c:2812:35: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((simp ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/file.c:2875:37: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((simp ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:2875:37: note: use '=' to turn this equality comparison into an assignment
if ((((simp ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/file.c:2875:37: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((simp ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/file.c:3165:23: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((simp ) ) == (scheme_false ) ) )
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:3165:23: note: use '=' to turn this equality comparison into an assignment
if ((((simp ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/file.c:3165:23: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((simp ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/file.c:4046:43: warning: self-comparison always evaluates to true
[-Wtautological-compare]
while (len && ((scheme_unix_path_type == scheme_unix_path_type ) ? ((fullfilename [len - 1 ] ) == '/' ...
^
../../../racket/gc2/../src/file.c:4482:20: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((file ) == (same_symbol ) ) ) {
~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:4482:20: note: use '=' to turn this equality comparison into an assignment
if (((file ) == (same_symbol ) ) ) {
^~
=
../../../racket/gc2/../src/file.c:4482:20: note: remove extraneous parentheses around the comparison to silence
this warning
if (((file ) == (same_symbol ) ) ) {
~ ^ ~
../../../racket/gc2/../src/file.c:4499:19: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((accum ) == (scheme_null ) ) ) {
~~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:4499:19: note: use '=' to turn this equality comparison into an assignment
if (((accum ) == (scheme_null ) ) ) {
^~
=
../../../racket/gc2/../src/file.c:4499:19: note: remove extraneous parentheses around the comparison to silence
this warning
if (((accum ) == (scheme_null ) ) ) {
~ ^ ~
../../../racket/gc2/../src/file.c:4504:22: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((result ) == (up_symbol ) ) ) {
~~~~~~~~~~^~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:4504:22: note: use '=' to turn this equality comparison into an assignment
if (((result ) == (up_symbol ) ) ) {
^~
=
../../../racket/gc2/../src/file.c:4504:22: note: remove extraneous parentheses around the comparison to silence
this warning
if (((result ) == (up_symbol ) ) ) {
~ ^ ~
../../../racket/gc2/../src/file.c:4513:78: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((((Scheme_Simple_Object * ) (accum ) ) -> u . pair_val . car ) ) == (up_symbol ) ) ) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:4513:78: note: use '=' to turn this equality comparison into an assignment
if ((((((Scheme_Simple_Object * ) (accum ) ) -> u . pair_val . car ) ) == (up_symbol ) ) ) {
^~
=
../../../racket/gc2/../src/file.c:4513:78: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((((Scheme_Simple_Object * ) (accum ) ) -> u . pair_val . car ) ) == (up_symbol ) ) ) {
~ ^ ~
../../../racket/gc2/../src/file.c:4552:29: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((result ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:4552:29: note: use '=' to turn this equality comparison into an assignment
if ((((result ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/file.c:4552:29: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((result ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/file.c:4565:27: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((to_go ) == (up_symbol ) ) ) {
~~~~~~~~~^~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:4565:27: note: use '=' to turn this equality comparison into an assignment
if (((to_go ) == (up_symbol ) ) ) {
^~
=
../../../racket/gc2/../src/file.c:4565:27: note: remove extraneous parentheses around the comparison to silence
this warning
if (((to_go ) == (up_symbol ) ) ) {
~ ^ ~
../../../racket/gc2/../src/file.c:4583:31: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((next ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:4583:31: note: use '=' to turn this equality comparison into an assignment
if ((((next ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/file.c:4583:31: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((next ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/file.c:4597:27: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((result ) ) == (scheme_false ) ) )
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:4597:27: note: use '=' to turn this equality comparison into an assignment
if ((((result ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/file.c:4597:27: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((result ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/file.c:4647:16: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((r ) ) == (scheme_false ) ) ) {
~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:4647:16: note: use '=' to turn this equality comparison into an assignment
if ((((r ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/file.c:4647:16: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((r ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/file.c:4963:19: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((matches ) == (scheme_null ) ) )
~~~~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:4963:19: note: use '=' to turn this equality comparison into an assignment
if (((matches ) == (scheme_null ) ) )
^~
=
../../../racket/gc2/../src/file.c:4963:19: note: remove extraneous parentheses around the comparison to silence
this warning
if (((matches ) == (scheme_null ) ) )
~ ^ ~
../../../racket/gc2/../src/file.c:4966:76: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((((Scheme_Simple_Object * ) (matches ) ) -> u . pair_val . cdr ) ) == (scheme_null ) ) ) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:4966:76: note: use '=' to turn this equality comparison into an assignment
if ((((((Scheme_Simple_Object * ) (matches ) ) -> u . pair_val . cdr ) ) == (scheme_null ) ) ) {
^~
=
../../../racket/gc2/../src/file.c:4966:76: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((((Scheme_Simple_Object * ) (matches ) ) -> u . pair_val . cdr ) ) == (scheme_null ) ) ) {
~ ^ ~
../../../racket/gc2/../src/file.c:4976:37: warning: self-comparison always evaluates to true
[-Wtautological-compare]
if (! ((scheme_unix_path_type == scheme_unix_path_type ) ? ((fn [len - 1 ] ) == '/' ) : (((fn [len - ...
^
../../../racket/gc2/../src/file.c:4980:50: warning: self-comparison always evaluates to true
[-Wtautological-compare]
naya [len ++ ] = ((scheme_unix_path_type == scheme_unix_path_type ) ? '/' : '\\' ) ;
^
../../../racket/gc2/../src/file.c:5051:14: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((de ) == (scheme_null ) ) ) {
~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:5051:14: note: use '=' to turn this equality comparison into an assignment
if (((de ) == (scheme_null ) ) ) {
^~
=
../../../racket/gc2/../src/file.c:5051:14: note: remove extraneous parentheses around the comparison to silence
this warning
if (((de ) == (scheme_null ) ) ) {
~ ^ ~
../../../racket/gc2/../src/file.c:5054:16: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((oe ) == (scheme_null ) ) ) {
~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:5054:16: note: use '=' to turn this equality comparison into an assignment
if (((oe ) == (scheme_null ) ) ) {
^~
=
../../../racket/gc2/../src/file.c:5054:16: note: remove extraneous parentheses around the comparison to silence
this warning
if (((oe ) == (scheme_null ) ) ) {
~ ^ ~
../../../racket/gc2/../src/file.c:5141:41: warning: self-comparison always evaluates to true
[-Wtautological-compare]
while (len && ((scheme_unix_path_type == scheme_unix_path_type ) ? ((filename [len - 1 ] ) == '/' ) : ...
^
../../../racket/gc2/../src/file.c:5373:139: warning: equality comparison with extraneous parentheses
[-Wparentheses]
...(((((Scheme_Vector * ) (XFORM_OK_ASSIGN (scheme_get_thread_local_variables () -> group_member_cache_ ) ) ) -> els ) [2 * i ] ) ) == (scheme_false )...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:5373:139: note: use '=' to turn this equality comparison into an assignment
...() -> group_member_cache_ ) ) ) -> els ) [2 * i ] ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/file.c:5373:139: note: remove extraneous parentheses around the comparison to silence
this warning
...((((((Scheme_Vector * ) (XFORM_OK_ASSIGN (scheme_get_thread_local_variables () -> group_member_cache_ ) ) ) -> els ) [2 * i ] ) ) == (scheme_false ) )...
~ ^ ~
../../../racket/gc2/../src/file.c:5395:18: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((l ) ) == (scheme_false ) ) ) {
~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:5395:18: note: use '=' to turn this equality comparison into an assignment
if ((((l ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/file.c:5395:18: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((l ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/file.c:5713:13: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((v ) == (scheme_null ) ) )
~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/file.c:5713:13: note: use '=' to turn this equality comparison into an assignment
if (((v ) == (scheme_null ) ) )
^~
=
../../../racket/gc2/../src/file.c:5713:13: note: remove extraneous parentheses around the comparison to silence
this warning
if (((v ) == (scheme_null ) ) )
~ ^ ~
29 warnings generated.
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/fun.c ../../../racket/gc2/../src/fun.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/fun.c -o fun.o
../../../racket/gc2/../src/fun.c:1192:15: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((obj ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:1192:15: note: use '=' to turn this equality comparison into an assignment
if (((obj ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:1192:15: note: remove extraneous parentheses around the comparison to silence this
warning
if (((obj ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:1219:20: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((obj ) == (((Scheme_Object * ) 0x2 ) ) ) ) {
~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:1219:20: note: use '=' to turn this equality comparison into an assignment
else if (((obj ) == (((Scheme_Object * ) 0x2 ) ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:1219:20: note: remove extraneous parentheses around the comparison to silence this
warning
else if (((obj ) == (((Scheme_Object * ) 0x2 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:1573:18: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((prop ) == (opaque_symbol ) ) ) {
~~~~~~~~^~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:1573:18: note: use '=' to turn this equality comparison into an assignment
if (((prop ) == (opaque_symbol ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:1573:18: note: remove extraneous parentheses around the comparison to silence this
warning
if (((prop ) == (opaque_symbol ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:1578:23: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((prop ) == (transparent_symbol ) ) ) {
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:1578:23: note: use '=' to turn this equality comparison into an assignment
else if (((prop ) == (transparent_symbol ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:1578:23: note: remove extraneous parentheses around the comparison to silence this
warning
else if (((prop ) == (transparent_symbol ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:1581:23: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((prop ) == (transparent_binding_symbol ) ) ) {
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:1581:23: note: use '=' to turn this equality comparison into an assignment
else if (((prop ) == (transparent_binding_symbol ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:1581:23: note: remove extraneous parentheses around the comparison to silence this
warning
else if (((prop ) == (transparent_binding_symbol ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:1849:18: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((a ) == (scheme_null ) ) )
~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:1849:18: note: use '=' to turn this equality comparison into an assignment
else if (((a ) == (scheme_null ) ) )
^~
=
../../../racket/gc2/../src/fun.c:1849:18: note: remove extraneous parentheses around the comparison to silence this
warning
else if (((a ) == (scheme_null ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:1968:24: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((v ) == (scheme_null ) ) ) {
~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:1968:24: note: use '=' to turn this equality comparison into an assignment
else if (((v ) == (scheme_null ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:1968:24: note: remove extraneous parentheses around the comparison to silence this
warning
else if (((v ) == (scheme_null ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:1943:32: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
RET_VALUE_EMPTY_START (FUNCCALL_EMPTY(clone_arity (((Scheme_Structure * ) p ) -> slots [1 ] , drop ) )...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:1819:28: note: instantiated from:
# define FUNCCALL_EMPTY(x) FUNCCALL_EMPTY_each(x)
^
../../../racket/gc2/../src/fun.c:1943:32: note: instantiated from:
RET_VALUE_EMPTY_START (FUNCCALL_EMPTY(clone_arity (((Scheme_Structure * ) p ) -> slots [1 ] , drop ...
^ ~
../../../racket/gc2/../src/fun.c:1943:60: note: instantiated from:
RET_VALUE_EMPTY_START (FUNCCALL_EMPTY(clone_arity (((Scheme_Structure * ) p ) -> slots [1 ] , drop ...
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../src/schpriv.h:721:19: note: array 'slots' declared here
Scheme_Object * slots [1 ] ;
^
../../../racket/gc2/../src/fun.c:1947:13: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
v = ((Scheme_Structure * ) p ) -> slots [1 ] ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../src/schpriv.h:721:19: note: array 'slots' declared here
Scheme_Object * slots [1 ] ;
^
../../../racket/gc2/../src/fun.c:2282:14: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& (! (((((Scheme_Structure * ) a ) -> slots [2 ] ) ) == (scheme_false ) ) ) ) {
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../src/schpriv.h:721:19: note: array 'slots' declared here
Scheme_Object * slots [1 ] ;
^
../../../racket/gc2/../src/fun.c:2332:22: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((n ) ) == (scheme_false ) ) )
~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:2332:22: note: use '=' to turn this equality comparison into an assignment
if ((((n ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/fun.c:2332:22: note: remove extraneous parentheses around the comparison to silence this
warning
if ((((n ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:2352:19: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((other ) == (p ) ) ) {
~~~~~~~~~^~~~~~~
../../../racket/gc2/../src/fun.c:2352:19: note: use '=' to turn this equality comparison into an assignment
if (((other ) == (p ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:2352:19: note: remove extraneous parentheses around the comparison to silence this
warning
if (((other ) == (p ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:2356:31: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
Scheme_Object * sym = ((Scheme_Structure * ) p ) -> slots [2 ] ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../src/schpriv.h:721:19: note: array 'slots' declared here
Scheme_Object * slots [1 ] ;
^
../../../racket/gc2/../src/fun.c:2474:24: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
RET_VALUE_START (((Scheme_Structure * ) a ) -> slots [2 ] ) RET_VALUE_END ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../src/schpriv.h:721:19: note: array 'slots' declared here
Scheme_Object * slots [1 ] ;
^
../../../racket/gc2/../src/fun.c:2544:18: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((a ) == (scheme_null ) ) ) {
~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:2544:18: note: use '=' to turn this equality comparison into an assignment
else if (((a ) == (scheme_null ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:2544:18: note: remove extraneous parentheses around the comparison to silence this
warning
else if (((a ) == (scheme_null ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:2604:13: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((a ) == (scheme_null ) ) )
~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:2604:13: note: use '=' to turn this equality comparison into an assignment
if (((a ) == (scheme_null ) ) )
^~
=
../../../racket/gc2/../src/fun.c:2604:13: note: remove extraneous parentheses around the comparison to silence this
warning
if (((a ) == (scheme_null ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:2638:14: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
name = ((Scheme_Structure * ) proc ) -> slots [2 ] ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../src/schpriv.h:721:19: note: array 'slots' declared here
Scheme_Object * slots [1 ] ;
^
../../../racket/gc2/../src/fun.c:2640:17: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
is_meth = ((Scheme_Structure * ) proc ) -> slots [3 ] ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../src/schpriv.h:721:19: note: array 'slots' declared here
Scheme_Object * slots [1 ] ;
^
../../../racket/gc2/../src/fun.c:2761:20: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((ra ) == (scheme_null ) ) )
~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:2761:20: note: use '=' to turn this equality comparison into an assignment
if (((ra ) == (scheme_null ) ) )
^~
=
../../../racket/gc2/../src/fun.c:2761:20: note: remove extraneous parentheses around the comparison to silence this
warning
if (((ra ) == (scheme_null ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:2766:16: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((ol ) == (scheme_null ) ) ) {
~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:2766:16: note: use '=' to turn this equality comparison into an assignment
if (((ol ) == (scheme_null ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:2766:16: note: remove extraneous parentheses around the comparison to silence this
warning
if (((ol ) == (scheme_null ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:2845:14: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((v1 ) == (v2 ) ) )
~~~~~~^~~~~~~~
../../../racket/gc2/../src/fun.c:2845:14: note: use '=' to turn this equality comparison into an assignment
if (((v1 ) == (v2 ) ) )
^~
=
../../../racket/gc2/../src/fun.c:2845:14: note: remove extraneous parentheses around the comparison to silence this
warning
if (((v1 ) == (v2 ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:2876:26: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((c1 -> code ) == (c2 -> code ) ) ) {
~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:2876:26: note: use '=' to turn this equality comparison into an assignment
if (((c1 -> code ) == (c2 -> code ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:2876:26: note: remove extraneous parentheses around the comparison to silence this
warning
if (((c1 -> code ) == (c2 -> code ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:2891:26: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((c1 -> code ) == (c2 -> code ) ) ) {
~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:2891:26: note: use '=' to turn this equality comparison into an assignment
if (((c1 -> code ) == (c2 -> code ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:2891:26: note: remove extraneous parentheses around the comparison to silence this
warning
if (((c1 -> code ) == (c2 -> code ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:3108:40: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:3108:40: note: use '=' to turn this equality comparison into an assignment
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
^~
=
../../../racket/gc2/../src/fun.c:3108:40: note: remove extraneous parentheses around the comparison to silence this
warning
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:3217:42: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:3217:42: note: use '=' to turn this equality comparison into an assignment
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
^~
=
../../../racket/gc2/../src/fun.c:3217:42: note: remove extraneous parentheses around the comparison to silence this
warning
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:3241:42: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:3241:42: note: use '=' to turn this equality comparison into an assignment
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
^~
=
../../../racket/gc2/../src/fun.c:3241:42: note: remove extraneous parentheses around the comparison to silence this
warning
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~ ^ ~
../../../racket/gc2/../src/schmap.inc:144:18: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((v ) ) == (scheme_false ) ) )
~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/schmap.inc:144:18: note: use '=' to turn this equality comparison into an assignment
if ((((v ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/schmap.inc:144:18: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((v ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:3373:13: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:3373:13: note: use '=' to turn this equality comparison into an assignment
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:3373:13: note: remove extraneous parentheses around the comparison to silence this
warning
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:3376:40: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:3376:40: note: use '=' to turn this equality comparison into an assignment
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
^~
=
../../../racket/gc2/../src/fun.c:3376:40: note: remove extraneous parentheses around the comparison to silence this
warning
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:3443:18: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((values ) == (t -> values_buffer ) ) )
~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:3443:18: note: use '=' to turn this equality comparison into an assignment
if (((values ) == (t -> values_buffer ) ) )
^~
=
../../../racket/gc2/../src/fun.c:3443:18: note: remove extraneous parentheses around the comparison to silence this
warning
if (((values ) == (t -> values_buffer ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:3972:30: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((seg [pos ] . key ) == (cont_key ) ) )
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:3972:30: note: use '=' to turn this equality comparison into an assignment
if (((seg [pos ] . key ) == (cont_key ) ) )
^~
=
../../../racket/gc2/../src/fun.c:3972:30: note: remove extraneous parentheses around the comparison to silence this
warning
if (((seg [pos ] . key ) == (cont_key ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:4160:16: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((mc ) == (prompt_cont ) ) ) {
~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:4160:16: note: use '=' to turn this equality comparison into an assignment
if (((mc ) == (prompt_cont ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:4160:16: note: remove extraneous parentheses around the comparison to silence this
warning
if (((mc ) == (prompt_cont ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:4367:19: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((val ) == (cont_key ) ) )
~~~~~~~^~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:4367:19: note: use '=' to turn this equality comparison into an assignment
if (((val ) == (cont_key ) ) )
^~
=
../../../racket/gc2/../src/fun.c:4367:19: note: remove extraneous parentheses around the comparison to silence this
warning
if (((val ) == (cont_key ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:4583:49: warning: equality comparison with extraneous parentheses [-Wparentheses]
...(prompt -> runstack_boundary_start ) == (XFORM_OK_ASSIGN (scheme_get_thread_local_variables () -> scheme_current_runstack_start_ ) )...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:4583:49: note: use '=' to turn this equality comparison into an assignment
if (((prompt -> runstack_boundary_start ) == (XFORM_OK_ASSIGN (scheme_get_thread_local_variables () ...
^~
=
../../../racket/gc2/../src/fun.c:4583:49: note: remove extraneous parentheses around the comparison to silence this
warning
...((prompt -> runstack_boundary_start ) == (XFORM_OK_ASSIGN (scheme_get_thread_local_variables () -> scheme_current_runstack_start_ ) ) )...
~ ^ ~
../../../racket/gc2/../src/fun.c:4650:18: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((result ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:4650:18: note: use '=' to turn this equality comparison into an assignment
if (((result ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:4650:18: note: remove extraneous parentheses around the comparison to silence this
warning
if (((result ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:4654:16: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((mv ) == (p -> values_buffer ) ) )
~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:4654:16: note: use '=' to turn this equality comparison into an assignment
if (((mv ) == (p -> values_buffer ) ) )
^~
=
../../../racket/gc2/../src/fun.c:4654:16: note: remove extraneous parentheses around the comparison to silence this
warning
if (((mv ) == (p -> values_buffer ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:4978:18: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((result ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:4978:18: note: use '=' to turn this equality comparison into an assignment
if (((result ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:4978:18: note: remove extraneous parentheses around the comparison to silence this
warning
if (((result ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:5538:46: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:5538:46: note: use '=' to turn this equality comparison into an assignment
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
^~
=
../../../racket/gc2/../src/fun.c:5538:46: note: remove extraneous parentheses around the comparison to silence this
warning
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:5644:17: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:5644:17: note: use '=' to turn this equality comparison into an assignment
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:5644:17: note: remove extraneous parentheses around the comparison to silence this
warning
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:5645:44: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:5645:44: note: use '=' to turn this equality comparison into an assignment
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
^~
=
../../../racket/gc2/../src/fun.c:5645:44: note: remove extraneous parentheses around the comparison to silence this
warning
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:5972:27: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((handler ) == (scheme_values_func ) ) ) {
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:5972:27: note: use '=' to turn this equality comparison into an assignment
if (((handler ) == (scheme_values_func ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:5972:27: note: remove extraneous parentheses around the comparison to silence this
warning
if (((handler ) == (scheme_values_func ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:5975:35: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if ((((handler ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:5975:35: note: use '=' to turn this equality comparison into an assignment
else if ((((handler ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:5975:35: note: remove extraneous parentheses around the comparison to silence this
warning
else if ((((handler ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:6110:42: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:6110:42: note: use '=' to turn this equality comparison into an assignment
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
^~
=
../../../racket/gc2/../src/fun.c:6110:42: note: remove extraneous parentheses around the comparison to silence this
warning
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:6416:26: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((cache ) ) == (scheme_false ) ) )
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:6416:26: note: use '=' to turn this equality comparison into an assignment
if ((((cache ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/fun.c:6416:26: note: remove extraneous parentheses around the comparison to silence this
warning
if ((((cache ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:6503:61: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [1 ] = (((Scheme_Vector * ) (cache ) ) -> els ) [1 ] ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:6503:15: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [1 ] = (((Scheme_Vector * ) (cache ) ) -> els ) [1 ] ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:6504:61: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [2 ] = (((Scheme_Vector * ) (cache ) ) -> els ) [2 ] ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:6504:15: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [2 ] = (((Scheme_Vector * ) (cache ) ) -> els ) [2 ] ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:6505:61: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [3 ] = (((Scheme_Vector * ) (cache ) ) -> els ) [3 ] ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:6505:15: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [3 ] = (((Scheme_Vector * ) (cache ) ) -> els ) [3 ] ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:6662:24: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((argv [0 ] ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:6662:24: note: use '=' to turn this equality comparison into an assignment
if ((((argv [0 ] ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:6662:24: note: remove extraneous parentheses around the comparison to silence this
warning
if ((((argv [0 ] ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:6685:15: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((t ) == (XFORM_OK_ASSIGN (scheme_get_thread_local_variables () -> scheme_current_thread_ ) ) ) )
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:6685:15: note: use '=' to turn this equality comparison into an assignment
if (((t ) == (XFORM_OK_ASSIGN (scheme_get_thread_local_variables () -> scheme_current_thread_ ) ) ) )
^~
=
../../../racket/gc2/../src/fun.c:6685:15: note: remove extraneous parentheses around the comparison to silence this
warning
if (((t ) == (XFORM_OK_ASSIGN (scheme_get_thread_local_variables () -> scheme_current_thread_ ) ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:6823:28: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((chain -> key ) == (keys [i ] ) ) ) {
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:6823:28: note: use '=' to turn this equality comparison into an assignment
if (((chain -> key ) == (keys [i ] ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:6823:28: note: remove extraneous parentheses around the comparison to silence this
warning
if (((chain -> key ) == (keys [i ] ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:6841:26: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((chain -> key ) == (prompt_tag ) ) )
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:6841:26: note: use '=' to turn this equality comparison into an assignment
if (((chain -> key ) == (prompt_tag ) ) )
^~
=
../../../racket/gc2/../src/fun.c:6841:26: note: remove extraneous parentheses around the comparison to silence this
warning
if (((chain -> key ) == (prompt_tag ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:6884:15: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((m ) == (scheme_null ) ) )
~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:6884:15: note: use '=' to turn this equality comparison into an assignment
if (((m ) == (scheme_null ) ) )
^~
=
../../../racket/gc2/../src/fun.c:6884:15: note: remove extraneous parentheses around the comparison to silence this
warning
if (((m ) == (scheme_null ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:6910:80: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((((((Scheme_Simple_Object * ) (name ) ) -> u . pair_val . cdr ) ) ) == (scheme_false ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:6910:80: note: use '=' to turn this equality comparison into an assignment
if (((((((Scheme_Simple_Object * ) (name ) ) -> u . pair_val . cdr ) ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/fun.c:6910:80: note: remove extraneous parentheses around the comparison to silence this
warning
if (((((((Scheme_Simple_Object * ) (name ) ) -> u . pair_val . cdr ) ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:6912:85: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((((((Scheme_Simple_Object * ) (name ) ) -> u . pair_val . cdr ) ) ) == (scheme_void ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:6912:85: note: use '=' to turn this equality comparison into an assignment
else if (((((((Scheme_Simple_Object * ) (name ) ) -> u . pair_val . cdr ) ) ) == (scheme_void ) ) )
^~
=
../../../racket/gc2/../src/fun.c:6912:85: note: remove extraneous parentheses around the comparison to silence this
warning
else if (((((((Scheme_Simple_Object * ) (name ) ) -> u . pair_val . cdr ) ) ) == (scheme_void ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:6897:13: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL(SETUP_XfOrM1368(_), scheme_make_location ((((Scheme_Vector * ) (name ) ) -> els ) [1 ] , (((Scheme_Vector * ) (name ) ) -> els ) [2 ] , (((Scheme_Vector * ) (name ) ) -> els ) [3 ] , (((Scheme_Vector * ) (name ) ) -> els ) [4 ] , (((Scheme_Vector * ) (name ) ) -> els ) [5 ] ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:6860:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_each(s, x)
^
../../../racket/gc2/../src/fun.c:6897:13: note: instantiated from:
loc = FUNCCALL(SETUP_XfOrM1368(_), scheme_make_location ((((Scheme_Vector * ) (name ) ) -> els ) [1 ...
^ ~
../../../racket/gc2/../src/fun.c:6897:64: note: instantiated from:
loc = FUNCCALL(SETUP_XfOrM1368(_), scheme_make_location ((((Scheme_Vector * ) (name ) ) -> els ) [1 ...
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:6897:13: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL(SETUP_XfOrM1368(_), scheme_make_location ((((Scheme_Vector * ) (name ) ) -> els ) [1 ] , (((Scheme_Vector * ) (name ) ) -> els ) [2 ] , (((Scheme_Vector * ) (name ) ) -> els ) [3 ] , (((Scheme_Vector * ) (name ) ) -> els ) [4 ] , (((Scheme_Vector * ) (name ) ) -> els ) [5 ] ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:6860:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_each(s, x)
^
../../../racket/gc2/../src/fun.c:6897:13: note: instantiated from:
...FUNCCALL(SETUP_XfOrM1368(_), scheme_make_location ((((Scheme_Vector * ) (name ) ) -> els ) [1 ] , (((Scheme_Vector * ) (name ) ) -> els ) [2...
^ ~
../../../racket/gc2/../src/fun.c:6897:111: note: instantiated from:
...) (name ) ) -> els ) [1 ] , (((Scheme_Vector * ) (name ) ) -> els ) [2 ] , (((Scheme_Vector * ) (name ) ) ...
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:6897:13: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL(SETUP_XfOrM1368(_), scheme_make_location ((((Scheme_Vector * ) (name ) ) -> els ) [1 ] , (((Scheme_Vector * ) (name ) ) -> els ) [2 ] , (((Scheme_Vector * ) (name ) ) -> els ) [3 ] , (((Scheme_Vector * ) (name ) ) -> els ) [4 ] , (((Scheme_Vector * ) (name ) ) -> els ) [5 ] ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:6860:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_each(s, x)
^
../../../racket/gc2/../src/fun.c:6897:13: note: instantiated from:
...FUNCCALL(SETUP_XfOrM1368(_), scheme_make_location ((((Scheme_Vector * ) (name ) ) -> els ) [1 ] , (((Scheme_Vector * ) (name ) ) -> els ) [2 ] , (((Scheme_Vector * ) (name ) ) -> els ) [3...
^ ~
../../../racket/gc2/../src/fun.c:6897:158: note: instantiated from:
...) (name ) ) -> els ) [2 ] , (((Scheme_Vector * ) (name ) ) -> els ) [3 ] , (((Scheme_Vector * ) (name ) ) ...
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:6897:13: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL(SETUP_XfOrM1368(_), scheme_make_location ((((Scheme_Vector * ) (name ) ) -> els ) [1 ] , (((Scheme_Vector * ) (name ) ) -> els ) [2 ] , (((Scheme_Vector * ) (name ) ) -> els ) [3 ] , (((Scheme_Vector * ) (name ) ) -> els ) [4 ] , (((Scheme_Vector * ) (name ) ) -> els ) [5 ] ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:6860:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_each(s, x)
^
../../../racket/gc2/../src/fun.c:6897:13: note: instantiated from:
...FUNCCALL(SETUP_XfOrM1368(_), scheme_make_location ((((Scheme_Vector * ) (name ) ) -> els ) [1 ] , (((Scheme_Vector * ) (name ) ) -> els ) [2 ] , (((Scheme_Vector * ) (name ) ) -> els ) [3 ] , (((Scheme_Vector * ) (name ) ) -> els ) [4...
^ ~
../../../racket/gc2/../src/fun.c:6897:205: note: instantiated from:
...) (name ) ) -> els ) [3 ] , (((Scheme_Vector * ) (name ) ) -> els ) [4 ] , (((Scheme_Vector * ) (name ) ) ...
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:6897:13: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL(SETUP_XfOrM1368(_), scheme_make_location ((((Scheme_Vector * ) (name ) ) -> els ) [1 ] , (((Scheme_Vector * ) (name ) ) -> els ) [2 ] , (((Scheme_Vector * ) (name ) ) -> els ) [3 ] , (((Scheme_Vector * ) (name ) ) -> els ) [4 ] , (((Scheme_Vector * ) (name ) ) -> els ) [5 ] ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:6860:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_each(s, x)
^
../../../racket/gc2/../src/fun.c:6897:13: note: instantiated from:
...FUNCCALL(SETUP_XfOrM1368(_), scheme_make_location ((((Scheme_Vector * ) (name ) ) -> els ) [1 ] , (((Scheme_Vector * ) (name ) ) -> els ) [2 ] , (((Scheme_Vector * ) (name ) ) -> els ) [3 ] , (((Scheme_Vector * ) (name ) ) -> els ) [4 ] , (((Scheme_Vector * ) (name ) ) -> els ) [5...
^ ~
../../../racket/gc2/../src/fun.c:6897:252: note: instantiated from:
...) [3 ] , (((Scheme_Vector * ) (name ) ) -> els ) [4 ] , (((Scheme_Vector * ) (name ) ) -> els ) [5 ] ) )
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:6902:17: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if ((! ((((((Scheme_Vector * ) (name ) ) -> els ) [6 ] ) ) == (scheme_false ) ) ) )
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:6955:33: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((chain -> key ) == (prompt_tag ) ) )
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:6955:33: note: use '=' to turn this equality comparison into an assignment
else if (((chain -> key ) == (prompt_tag ) ) )
^~
=
../../../racket/gc2/../src/fun.c:6955:33: note: remove extraneous parentheses around the comparison to silence this
warning
else if (((chain -> key ) == (prompt_tag ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:6993:34: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((seg [pos ] . key ) == (key ) ) ) {
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
../../../racket/gc2/../src/fun.c:6993:34: note: use '=' to turn this equality comparison into an assignment
if (((seg [pos ] . key ) == (key ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:6993:34: note: remove extraneous parentheses around the comparison to silence this
warning
if (((seg [pos ] . key ) == (key ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:6997:39: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((seg [pos ] . key ) == (prompt_tag ) ) ) {
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:6997:39: note: use '=' to turn this equality comparison into an assignment
else if (((seg [pos ] . key ) == (prompt_tag ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:6997:39: note: remove extraneous parentheses around the comparison to silence this
warning
else if (((seg [pos ] . key ) == (prompt_tag ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:7010:69: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((((Scheme_Vector * ) (cache ) ) -> els ) [1 ] ) == (key ) ) ) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
../../../racket/gc2/../src/fun.c:7010:69: note: use '=' to turn this equality comparison into an assignment
if ((((((Scheme_Vector * ) (cache ) ) -> els ) [1 ] ) == (key ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:7010:69: note: remove extraneous parentheses around the comparison to silence this
warning
if ((((((Scheme_Vector * ) (cache ) ) -> els ) [1 ] ) == (key ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:7009:17: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if ((((Scheme_Vector * ) (cache ) ) -> els ) [1 ] ) {
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7010:21: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if ((((((Scheme_Vector * ) (cache ) ) -> els ) [1 ] ) == (key ) ) ) {
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7011:23: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
val = (((Scheme_Vector * ) (cache ) ) -> els ) [2 ] ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7012:36: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
vpos = (intptr_t ) (((Scheme_Vector * ) (cache ) ) -> els ) [3 ] ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7017:43: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
ht = (Scheme_Hash_Table * ) (((Scheme_Vector * ) (cache ) ) -> els ) [2 ] ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7058:63: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [1 ] = (((Scheme_Vector * ) (cache ) ) -> els ) [1 ] ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7058:17: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [1 ] = (((Scheme_Vector * ) (cache ) ) -> els ) [1 ] ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7059:63: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [2 ] = (((Scheme_Vector * ) (cache ) ) -> els ) [2 ] ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7059:17: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [2 ] = (((Scheme_Vector * ) (cache ) ) -> els ) [2 ] ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7060:63: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [3 ] = (((Scheme_Vector * ) (cache ) ) -> els ) [3 ] ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7060:17: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [3 ] = (((Scheme_Vector * ) (cache ) ) -> els ) [3 ] ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7074:13: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (cache ) ) -> els ) [1 ] = key ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7075:13: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (cache ) ) -> els ) [2 ] = val ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7076:13: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (cache ) ) -> els ) [3 ] = (Scheme_Object * ) vpos ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7085:17: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if ((((Scheme_Vector * ) (cache ) ) -> els ) [1 ] ) {
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7090:31: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL(SETUP_XfOrM1438(_), scheme_make_raw_pair ((((Scheme_Vector * ) (cache ) ) -> els ) [2 ] , (((Scheme_Vector * ) (cache ) ) -> els ) [3 ] ) )...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:6957:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_each(s, x)
^
../../../racket/gc2/../src/fun.c:7090:31: note: instantiated from:
...= FUNCCALL(SETUP_XfOrM1438(_), scheme_make_raw_pair ((((Scheme_Vector * ) (cache ) ) -> els ) [2 ] , ...
^ ~
../../../racket/gc2/../src/fun.c:7090:82: note: instantiated from:
...= FUNCCALL(SETUP_XfOrM1438(_), scheme_make_raw_pair ((((Scheme_Vector * ) (cache ) ) -> els ) [2 ] , ...
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7090:31: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL(SETUP_XfOrM1438(_), scheme_make_raw_pair ((((Scheme_Vector * ) (cache ) ) -> els ) [2 ] , (((Scheme_Vector * ) (cache ) ) -> els ) [3 ] ) )...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:6957:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_each(s, x)
^
../../../racket/gc2/../src/fun.c:7090:31: note: instantiated from:
...FUNCCALL(SETUP_XfOrM1438(_), scheme_make_raw_pair ((((Scheme_Vector * ) (cache ) ) -> els ) [2 ] , (((Scheme_Vector * ) (cache ) ) -> els ) [3...
^ ~
../../../racket/gc2/../src/fun.c:7090:130: note: instantiated from:
...) -> els ) [2 ] , (((Scheme_Vector * ) (cache ) ) -> els ) [3 ] ) ), FUNCCALL_AGAIN(scheme_hash_set (ht , ...
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7090:181: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...), FUNCCALL_AGAIN(scheme_hash_set (ht , (((Scheme_Vector * ) (cache ) ) -> els ) [1 ] , __funcarg102 ) ))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:6959:28: note: instantiated from:
# define FUNCCALL_AGAIN(x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/fun.c:7090:181: note: instantiated from:
...) -> els ) [3 ] ) ), FUNCCALL_AGAIN(scheme_hash_set (ht , (((Scheme_Vector * ) (cache ) ) -> els ) [1 ] , ...
^ ~
../../../racket/gc2/../src/fun.c:7090:218: note: instantiated from:
...] ) ), FUNCCALL_AGAIN(scheme_hash_set (ht , (((Scheme_Vector * ) (cache ) ) -> els ) [1 ] , __funcarg102 ) ...
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7092:15: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (cache ) ) -> els ) [1 ] = ((void * ) 0 ) ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7093:15: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (cache ) ) -> els ) [2 ] = (Scheme_Object * ) ht ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7097:43: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
ht = (Scheme_Hash_Table * ) (((Scheme_Vector * ) (cache ) ) -> els ) [2 ] ;
^ ~
In file included from xsrc/fun.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/fun.c:7172:28: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((argv [0 ] ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:7172:28: note: use '=' to turn this equality comparison into an assignment
if ((((argv [0 ] ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:7172:28: note: remove extraneous parentheses around the comparison to silence this
warning
if ((((argv [0 ] ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:7226:43: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((scheme_default_prompt_tag ) == (prompt_tag ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:7226:43: note: use '=' to turn this equality comparison into an assignment
if (((scheme_default_prompt_tag ) == (prompt_tag ) ) )
^~
=
../../../racket/gc2/../src/fun.c:7226:43: note: remove extraneous parentheses around the comparison to silence this
warning
if (((scheme_default_prompt_tag ) == (prompt_tag ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:7243:39: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((scheme_default_prompt_tag ) == (prompt_tag ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:7243:39: note: use '=' to turn this equality comparison into an assignment
if (((scheme_default_prompt_tag ) == (prompt_tag ) ) )
^~
=
../../../racket/gc2/../src/fun.c:7243:39: note: remove extraneous parentheses around the comparison to silence this
warning
if (((scheme_default_prompt_tag ) == (prompt_tag ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:7642:17: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:7642:17: note: use '=' to turn this equality comparison into an assignment
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:7642:17: note: remove extraneous parentheses around the comparison to silence this
warning
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:7646:29: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((save_values ) == (p -> values_buffer ) ) )
~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:7646:29: note: use '=' to turn this equality comparison into an assignment
if (((save_values ) == (p -> values_buffer ) ) )
^~
=
../../../racket/gc2/../src/fun.c:7646:29: note: remove extraneous parentheses around the comparison to silence this
warning
if (((save_values ) == (p -> values_buffer ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:7749:13: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:7749:13: note: use '=' to turn this equality comparison into an assignment
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
^~
=
../../../racket/gc2/../src/fun.c:7749:13: note: remove extraneous parentheses around the comparison to silence this
warning
if (((v ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/fun.c:7753:25: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((save_values ) == (p -> values_buffer ) ) )
~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:7753:25: note: use '=' to turn this equality comparison into an assignment
if (((save_values ) == (p -> values_buffer ) ) )
^~
=
../../../racket/gc2/../src/fun.c:7753:25: note: remove extraneous parentheses around the comparison to silence this
warning
if (((save_values ) == (p -> values_buffer ) ) )
~ ^ ~
../../../racket/gc2/../src/fun.c:8365:41: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((cp -> ku . multiple . array ) == (cp -> values_buffer ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/fun.c:8365:41: note: use '=' to turn this equality comparison into an assignment
if (((cp -> ku . multiple . array ) == (cp -> values_buffer ) ) )
^~
=
../../../racket/gc2/../src/fun.c:8365:41: note: remove extraneous parentheses around the comparison to silence this
warning
if (((cp -> ku . multiple . array ) == (cp -> values_buffer ) ) )
~ ^ ~
96 warnings generated.
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/future.c ../../../racket/gc2/../src/future.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/future.c -o future.o
../../../racket/gc2/../src/future.c:1021:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
((Scheme_Structure * ) data ) -> slots [1 ] = ((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) ...
^ ~
In file included from xsrc/future.c:1:
../../../racket/gc2/../src/schpriv.h:721:19: note: array 'slots' declared here
Scheme_Object * slots [1 ] ;
^
../../../racket/gc2/../src/future.c:1027:3: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
((Scheme_Structure * ) data ) -> slots [2 ] = v ;
^ ~
In file included from xsrc/future.c:1:
../../../racket/gc2/../src/schpriv.h:721:19: note: array 'slots' declared here
Scheme_Object * slots [1 ] ;
^
../../../racket/gc2/../src/future.c:1029:3: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
((Scheme_Structure * ) data ) -> slots [3 ] = v ;
^ ~
In file included from xsrc/future.c:1:
../../../racket/gc2/../src/schpriv.h:721:19: note: array 'slots' declared here
Scheme_Object * slots [1 ] ;
^
../../../racket/gc2/../src/future.c:2099:21: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((v ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/future.c:2099:21: note: use '=' to turn this equality comparison into an assignment
if (((v ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
^~
=
../../../racket/gc2/../src/future.c:2099:21: note: remove extraneous parentheses around the comparison to silence
this warning
if (((v ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/future.c:2170:13: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((v ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/future.c:2170:13: note: use '=' to turn this equality comparison into an assignment
if (((v ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
^~
=
../../../racket/gc2/../src/future.c:2170:13: note: remove extraneous parentheses around the comparison to silence
this warning
if (((v ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/future.c:2742:18: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((retval ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/future.c:2742:18: note: use '=' to turn this equality comparison into an assignment
if (((retval ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
^~
=
../../../racket/gc2/../src/future.c:2742:18: note: remove extraneous parentheses around the comparison to silence
this warning
if (((retval ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/future.c:2749:23: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((retval ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/future.c:2749:23: note: use '=' to turn this equality comparison into an assignment
else if (((retval ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
^~
=
../../../racket/gc2/../src/future.c:2749:23: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((retval ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/future.c:2768:18: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((retval ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/future.c:2768:18: note: use '=' to turn this equality comparison into an assignment
if (((retval ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
^~
=
../../../racket/gc2/../src/future.c:2768:18: note: remove extraneous parentheses around the comparison to silence
this warning
if (((retval ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/future.c:2773:40: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/future.c:2773:40: note: use '=' to turn this equality comparison into an assignment
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
^~
=
../../../racket/gc2/../src/future.c:2773:40: note: remove extraneous parentheses around the comparison to silence
this warning
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~ ^ ~
../../../racket/gc2/../src/future.c:2776:23: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((retval ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/future.c:2776:23: note: use '=' to turn this equality comparison into an assignment
else if (((retval ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
^~
=
../../../racket/gc2/../src/future.c:2776:23: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((retval ) == (((Scheme_Object * ) 0x4 ) ) ) ) {
~ ^ ~
10 warnings generated.
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/hash.c ../../../racket/gc2/../src/hash.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/hash.c -o hash.o
../../../racket/gc2/../src/hash.c:220:20: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((tkey ) == (GONE ) ) ) {
~~~~~~~~^~~~~~~~~~
../../../racket/gc2/../src/hash.c:220:20: note: use '=' to turn this equality comparison into an assignment
if (((tkey ) == (GONE ) ) ) {
^~
=
../../../racket/gc2/../src/hash.c:220:20: note: remove extraneous parentheses around the comparison to silence this
warning
if (((tkey ) == (GONE ) ) ) {
~ ^ ~
../../../racket/gc2/../src/hash.c:246:20: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((tkey ) == (key ) ) ) {
~~~~~~~~^~~~~~~~~
../../../racket/gc2/../src/hash.c:246:20: note: use '=' to turn this equality comparison into an assignment
if (((tkey ) == (key ) ) ) {
^~
=
../../../racket/gc2/../src/hash.c:246:20: note: remove extraneous parentheses around the comparison to silence this
warning
if (((tkey ) == (key ) ) ) {
~ ^ ~
../../../racket/gc2/../src/hash.c:256:25: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((tkey ) == (GONE ) ) ) {
~~~~~~~~^~~~~~~~~~
../../../racket/gc2/../src/hash.c:256:25: note: use '=' to turn this equality comparison into an assignment
else if (((tkey ) == (GONE ) ) ) {
^~
=
../../../racket/gc2/../src/hash.c:256:25: note: remove extraneous parentheses around the comparison to silence this
warning
else if (((tkey ) == (GONE ) ) ) {
~ ^ ~
../../../racket/gc2/../src/hash.c:328:18: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((tkey ) == (key ) ) ) {
~~~~~~~~^~~~~~~~~
../../../racket/gc2/../src/hash.c:328:18: note: use '=' to turn this equality comparison into an assignment
if (((tkey ) == (key ) ) ) {
^~
=
../../../racket/gc2/../src/hash.c:328:18: note: remove extraneous parentheses around the comparison to silence this
warning
if (((tkey ) == (key ) ) ) {
~ ^ ~
../../../racket/gc2/../src/hash.c:335:23: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((tkey ) == (GONE ) ) ) {
~~~~~~~~^~~~~~~~~~
../../../racket/gc2/../src/hash.c:335:23: note: use '=' to turn this equality comparison into an assignment
else if (((tkey ) == (GONE ) ) ) {
^~
=
../../../racket/gc2/../src/hash.c:335:23: note: remove extraneous parentheses around the comparison to silence this
warning
else if (((tkey ) == (GONE ) ) ) {
~ ^ ~
../../../racket/gc2/../src/hash.c:383:18: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((tkey ) == (key ) ) ) {
~~~~~~~~^~~~~~~~~
../../../racket/gc2/../src/hash.c:383:18: note: use '=' to turn this equality comparison into an assignment
if (((tkey ) == (key ) ) ) {
^~
=
../../../racket/gc2/../src/hash.c:383:18: note: remove extraneous parentheses around the comparison to silence this
warning
if (((tkey ) == (key ) ) ) {
~ ^ ~
../../../racket/gc2/../src/hash.c:631:25: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((hk ) == (key ) ) )
~~~~~~^~~~~~~~~
../../../racket/gc2/../src/hash.c:631:25: note: use '=' to turn this equality comparison into an assignment
else if (((hk ) == (key ) ) )
^~
=
../../../racket/gc2/../src/hash.c:631:25: note: remove extraneous parentheses around the comparison to silence this
warning
else if (((hk ) == (key ) ) )
~ ^ ~
../../../racket/gc2/../src/hash.c:650:29: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((bucket -> key ) == (key ) ) )
~~~~~~~~~~~~~~~~~^~~~~~~~~
../../../racket/gc2/../src/hash.c:650:29: note: use '=' to turn this equality comparison into an assignment
if (((bucket -> key ) == (key ) ) )
^~
=
../../../racket/gc2/../src/hash.c:650:29: note: remove extraneous parentheses around the comparison to silence this
warning
if (((bucket -> key ) == (key ) ) )
~ ^ ~
../../../racket/gc2/../src/hash.c:984:18: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((d ) == scheme_infinity_val ) ) {
~~~~~^~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/hash.c:984:18: note: use '=' to turn this equality comparison into an assignment
else if (((d ) == scheme_infinity_val ) ) {
^~
=
../../../racket/gc2/../src/hash.c:984:18: note: remove extraneous parentheses around the comparison to silence this
warning
else if (((d ) == scheme_infinity_val ) ) {
~ ^ ~
../../../racket/gc2/../src/hash.c:987:18: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((d ) == scheme_minus_infinity_val ) ) {
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/hash.c:987:18: note: use '=' to turn this equality comparison into an assignment
else if (((d ) == scheme_minus_infinity_val ) ) {
^~
=
../../../racket/gc2/../src/hash.c:987:18: note: remove extraneous parentheses around the comparison to silence this
warning
else if (((d ) == scheme_minus_infinity_val ) ) {
~ ^ ~
../../../racket/gc2/../src/hash.c:1199:17: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
procs = (((Scheme_Vector * ) (procs ) ) -> els ) [2 ] ;
^ ~
In file included from xsrc/hash.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/hash.c:1616:17: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
procs = (((Scheme_Vector * ) (procs ) ) -> els ) [3 ] ;
^ ~
In file included from xsrc/hash.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/hash.c:1993:13: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((s ) == (orig ) ) )
~~~~~^~~~~~~~~~
../../../racket/gc2/../src/hash.c:1993:13: note: use '=' to turn this equality comparison into an assignment
if (((s ) == (orig ) ) )
^~
=
../../../racket/gc2/../src/hash.c:1993:13: note: remove extraneous parentheses around the comparison to silence
this warning
if (((s ) == (orig ) ) )
~ ^ ~
../../../racket/gc2/../src/hash.c:2339:78: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((((Scheme_Simple_Object * ) (a ) ) -> u . pair_val . car ) ) == (key ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
../../../racket/gc2/../src/hash.c:2339:78: note: use '=' to turn this equality comparison into an assignment
if ((((((Scheme_Simple_Object * ) (a ) ) -> u . pair_val . car ) ) == (key ) ) )
^~
=
../../../racket/gc2/../src/hash.c:2339:78: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((((Scheme_Simple_Object * ) (a ) ) -> u . pair_val . car ) ) == (key ) ) )
~ ^ ~
../../../racket/gc2/../src/hash.c:2445:78: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((((Scheme_Simple_Object * ) (a ) ) -> u . pair_val . car ) ) == (key ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
../../../racket/gc2/../src/hash.c:2445:78: note: use '=' to turn this equality comparison into an assignment
if ((((((Scheme_Simple_Object * ) (a ) ) -> u . pair_val . car ) ) == (key ) ) )
^~
=
../../../racket/gc2/../src/hash.c:2445:78: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((((Scheme_Simple_Object * ) (a ) ) -> u . pair_val . car ) ) == (key ) ) )
~ ^ ~
../../../racket/gc2/../src/hash.c:2459:24: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((key ) == (rb -> key ) ) )
~~~~~~~^~~~~~~~~~~~~~~
../../../racket/gc2/../src/hash.c:2459:24: note: use '=' to turn this equality comparison into an assignment
else if (((key ) == (rb -> key ) ) )
^~
=
../../../racket/gc2/../src/hash.c:2459:24: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((key ) == (rb -> key ) ) )
~ ^ ~
16 warnings generated.
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/jit.c ../../../racket/gc2/../src/jit.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/jit.c -o jit.o
../../../racket/gc2/../src/jit.c:1819:38: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((jitter -> status_at_ptr == (jitter -> js ) . x . pc ) )
~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jit.c:1819:38: note: use '=' to turn this equality comparison into an assignment
if ((jitter -> status_at_ptr == (jitter -> js ) . x . pc ) )
^~
=
../../../racket/gc2/../src/jit.c:1819:38: note: remove extraneous parentheses around the comparison to silence this
warning
if ((jitter -> status_at_ptr == (jitter -> js ) . x . pc ) )
~ ^ ~
../../../racket/gc2/../src/jit.c:2793:22: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((obj ) ) == (scheme_false ) ) )
~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jit.c:2793:22: note: use '=' to turn this equality comparison into an assignment
if ((((obj ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/jit.c:2793:22: note: remove extraneous parentheses around the comparison to silence this
warning
if ((((obj ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/jit.c:3183:36: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((lr -> procs [pos ] ) == ((Scheme_Object * ) data ) ) ) {
~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jit.c:3183:36: note: use '=' to turn this equality comparison into an assignment
if (((lr -> procs [pos ] ) == ((Scheme_Object * ) data ) ) ) {
^~
=
../../../racket/gc2/../src/jit.c:3183:36: note: remove extraneous parentheses around the comparison to silence this
warning
if (((lr -> procs [pos ] ) == ((Scheme_Object * ) data ) ) ) {
~ ^ ~
3 warnings generated.
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/jitalloc.c ../../../racket/gc2/../src/jitalloc.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/jitalloc.c -o jitalloc.o
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/jitarith.c ../../../racket/gc2/../src/jitarith.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/jitarith.c -o jitarith.o
../../../racket/gc2/../src/jitarith.c:738:11: warning: self-comparison always evaluates to true
[-Wtautological-compare]
(((a1 ) == (a1 ) ) ? (((((void ) (((* (jitter -> js ) . x . uc_pc ++ ) = ((_uc ) ((0x48 | ((3 & 0x8 ) >> ...
^
../../../racket/gc2/../src/jitarith.c:743:11: warning: self-comparison always evaluates to true
[-Wtautological-compare]
(((a2 ) == (a2 ) ) ? (((((void ) (((* (jitter -> js ) . x . uc_pc ++ ) = ((_uc ) ((0x48 | ((3 & 0x8 ) >> ...
^
../../../racket/gc2/../src/jitarith.c:1420:23: warning: self-comparison always evaluates to true
[-Wtautological-compare]
(((v1 ) == (v1 ) ) ? (((((void ) (((* (jitter -> js ) . x . uc_pc ++ ) = ((_uc ) ((0x48 | ...
^
3 warnings generated.
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/jitcall.c ../../../racket/gc2/../src/jitcall.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/jitcall.c -o jitcall.o
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/jitcommon.c ../../../racket/gc2/../src/jitcommon.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/jitcommon.c -o jitcommon.o
../../../racket/gc2/../src/jitcommon.c:49:38: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitcommon.c:49:38: note: use '=' to turn this equality comparison into an assignment
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
^~
=
../../../racket/gc2/../src/jitcommon.c:49:38: note: remove extraneous parentheses around the comparison to silence
this warning
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~ ^ ~
../../../racket/gc2/../src/jitcommon.c:57:38: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitcommon.c:57:38: note: use '=' to turn this equality comparison into an assignment
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
^~
=
../../../racket/gc2/../src/jitcommon.c:57:38: note: remove extraneous parentheses around the comparison to silence
this warning
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~ ^ ~
../../../racket/gc2/../src/jitcommon.c:69:40: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitcommon.c:69:40: note: use '=' to turn this equality comparison into an assignment
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
^~
=
../../../racket/gc2/../src/jitcommon.c:69:40: note: remove extraneous parentheses around the comparison to silence
this warning
if (((p -> ku . multiple . array ) == (p -> values_buffer ) ) )
~ ^ ~
3 warnings generated.
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/jitinline.c ../../../racket/gc2/../src/jitinline.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/jitinline.c -o jitinline.o
../../../racket/gc2/../src/jitinline.c:190:34: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((jitter -> status_at_ptr == (jitter -> js ) . x . pc ) ) {
~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:190:34: note: use '=' to turn this equality comparison into an assignment
if ((jitter -> status_at_ptr == (jitter -> js ) . x . pc ) ) {
^~
=
../../../racket/gc2/../src/jitinline.c:190:34: note: remove extraneous parentheses around the comparison to silence
this warning
if ((jitter -> status_at_ptr == (jitter -> js ) . x . pc ) ) {
~ ^ ~
../../../racket/gc2/../src/jitinline.c:1286:8: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
c1 = FUNCCALL(SETUP_XfOrM256(_), scheme_is_constant_and_avoids_r1 (app -> args [1 ] ) );
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:1290:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:1286:8: note: instantiated from:
c1 = FUNCCALL(SETUP_XfOrM256(_), scheme_is_constant_and_avoids_r1 (app -> args [1 ] ) );
^ ~
../../../racket/gc2/../src/jitinline.c:1290:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:1286:8: note: instantiated from:
c1 = FUNCCALL(SETUP_XfOrM256(_), scheme_is_constant_and_avoids_r1 (app -> args [1 ] ) );
^ ~
../../../racket/gc2/../src/jitinline.c:1286:70: note: instantiated from:
c1 = FUNCCALL(SETUP_XfOrM256(_), scheme_is_constant_and_avoids_r1 (app -> args [1 ] ) );
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:1287:8: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
c2 = FUNCCALL(SETUP_XfOrM256(_), scheme_is_constant_and_avoids_r1 (app -> args [2 ] ) );
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:1290:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:1287:8: note: instantiated from:
c2 = FUNCCALL(SETUP_XfOrM256(_), scheme_is_constant_and_avoids_r1 (app -> args [2 ] ) );
^ ~
../../../racket/gc2/../src/jitinline.c:1290:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:1287:8: note: instantiated from:
c2 = FUNCCALL(SETUP_XfOrM256(_), scheme_is_constant_and_avoids_r1 (app -> args [2 ] ) );
^ ~
../../../racket/gc2/../src/jitinline.c:1287:70: note: instantiated from:
c2 = FUNCCALL(SETUP_XfOrM256(_), scheme_is_constant_and_avoids_r1 (app -> args [2 ] ) );
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:1296:5: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
FUNCCALL_AGAIN(scheme_generate (app -> args [3 ] , jitter , 0 , 0 , 0 , (0x40 + (0 ) ) , ((void * ) 0 ) ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:1292:28: note: instantiated from:
# define FUNCCALL_AGAIN(x) FUNCCALL_AGAIN_once(x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:18:32: note: instantiated from:
#define FUNCCALL_AGAIN_once(x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:1296:5: note: instantiated from:
FUNCCALL_AGAIN(scheme_generate (app -> args [3 ] , jitter , 0 , 0 , 0 , (0x40 + (0 ) ) , ((void * ) 0 ) ) )
^ ~
../../../racket/gc2/../src/jitinline.c:1292:28: note: instantiated from:
# define FUNCCALL_AGAIN(x) FUNCCALL_AGAIN_once(x)
^
../../../racket/gc2/../src/jitinline.c:1296:5: note: instantiated from:
FUNCCALL_AGAIN(scheme_generate (app -> args [3 ] , jitter , 0 , 0 , 0 , (0x40 + (0 ) ) , ((void * ) 0 ) ) )
^ ~
../../../racket/gc2/../src/jitinline.c:1296:37: note: instantiated from:
FUNCCALL_AGAIN(scheme_generate (app -> args [3 ] , jitter , 0 , 0 , 0 , (0x40 + (0 ) ) , ((void * ) 0 ) ) )
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:1301:5: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL(SETUP_XfOrM258(_), scheme_generate (app -> args [2 ] , jitter , 0 , 0 , 0 , (0x40 + (1 ) ) , ((void * ) 0 ) ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:1290:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:1301:5: note: instantiated from:
FUNCCALL(SETUP_XfOrM258(_), scheme_generate (app -> args [2 ] , jitter , 0 , 0 , 0 , (0x40 + (1 ) ) , ...
^ ~
../../../racket/gc2/../src/jitinline.c:1290:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:1301:5: note: instantiated from:
FUNCCALL(SETUP_XfOrM258(_), scheme_generate (app -> args [2 ] , jitter , 0 , 0 , 0 , (0x40 + (1 ) ) , ...
^ ~
../../../racket/gc2/../src/jitinline.c:1301:50: note: instantiated from:
FUNCCALL(SETUP_XfOrM258(_), scheme_generate (app -> args [2 ] , jitter , 0 , 0 , 0 , (0x40 + (1 ) ) , ...
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:1304:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL(SETUP_XfOrM258(_), scheme_generate (app -> args [1 ] , jitter , 0 , 0 , 0 , (0x40 + (0 ) ) , ((void * ) 0 ) ) )...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:1290:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:1304:5: note: instantiated from:
FUNCCALL(SETUP_XfOrM258(_), scheme_generate (app -> args [1 ] , jitter , 0 , 0 , 0 , (0x40 + (0 ) ) , ...
^ ~
../../../racket/gc2/../src/jitinline.c:1290:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:1304:5: note: instantiated from:
FUNCCALL(SETUP_XfOrM258(_), scheme_generate (app -> args [1 ] , jitter , 0 , 0 , 0 , (0x40 + (0 ) ) , ...
^ ~
../../../racket/gc2/../src/jitinline.c:1304:50: note: instantiated from:
FUNCCALL(SETUP_XfOrM258(_), scheme_generate (app -> args [1 ] , jitter , 0 , 0 , 0 , (0x40 + (0 ) ) , ...
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2693:11: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (FUNCCALL(SETUP_XfOrM516(_), scheme_can_delay_and_avoids_r1 (app -> args [1 ] ) ))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:2693:11: note: instantiated from:
if (FUNCCALL(SETUP_XfOrM516(_), scheme_can_delay_and_avoids_r1 (app -> args [1 ] ) ))
^ ~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:2693:11: note: instantiated from:
if (FUNCCALL(SETUP_XfOrM516(_), scheme_can_delay_and_avoids_r1 (app -> args [1 ] ) ))
^ ~
../../../racket/gc2/../src/jitinline.c:2693:71: note: instantiated from:
if (FUNCCALL(SETUP_XfOrM516(_), scheme_can_delay_and_avoids_r1 (app -> args [1 ] ) ))
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2698:32: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
simple = ((((intptr_t ) (app -> args [2 ] ) ) & 0x1 )
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2699:26: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& ((((intptr_t ) (app -> args [2 ] ) ) >> 1 ) >= 0 ) ) ;
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2700:21: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (simple || FUNCCALL(SETUP_XfOrM516(_), scheme_can_delay_and_avoids_r1 (app -> args [2 ] ) ))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:2700:21: note: instantiated from:
if (simple || FUNCCALL(SETUP_XfOrM516(_), scheme_can_delay_and_avoids_r1 (app -> args [2 ] ) ))
^ ~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:2700:21: note: instantiated from:
if (simple || FUNCCALL(SETUP_XfOrM516(_), scheme_can_delay_and_avoids_r1 (app -> args [2 ] ) ))
^ ~
../../../racket/gc2/../src/jitinline.c:2700:81: note: instantiated from:
if (simple || FUNCCALL(SETUP_XfOrM516(_), scheme_can_delay_and_avoids_r1 (app -> args [2 ] ) ))
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2705:18: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
constval = FUNCCALL(SETUP_XfOrM516(_), scheme_can_delay_and_avoids_r1 (app -> args [3 ] ) );
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:2705:18: note: instantiated from:
constval = FUNCCALL(SETUP_XfOrM516(_), scheme_can_delay_and_avoids_r1 (app -> args [3 ] ) );
^ ~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:2705:18: note: instantiated from:
constval = FUNCCALL(SETUP_XfOrM516(_), scheme_can_delay_and_avoids_r1 (app -> args [3 ] ) );
^ ~
../../../racket/gc2/../src/jitinline.c:2705:78: note: instantiated from:
constval = FUNCCALL(SETUP_XfOrM516(_), scheme_can_delay_and_avoids_r1 (app -> args [3 ] ) );
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2708:13: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (FUNCCALL(SETUP_XfOrM552(_), scheme_can_unbox_inline (app -> args [3 ] , 5 , 6 - 3 , 0 ) ))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:2708:13: note: instantiated from:
if (FUNCCALL(SETUP_XfOrM552(_), scheme_can_unbox_inline (app -> args [3 ] , 5 , 6 - 3 , 0 ) ))
^ ~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:2708:13: note: instantiated from:
if (FUNCCALL(SETUP_XfOrM552(_), scheme_can_unbox_inline (app -> args [3 ] , 5 , 6 - 3 , 0 ) ))
^ ~
../../../racket/gc2/../src/jitinline.c:2708:66: note: instantiated from:
if (FUNCCALL(SETUP_XfOrM552(_), scheme_can_unbox_inline (app -> args [3 ] , 5 , 6 - 3 , 0 ) ))
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2710:18: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
else if (FUNCCALL(SETUP_XfOrM552(_), scheme_can_unbox_directly (app -> args [3 ] ) ))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:2710:18: note: instantiated from:
else if (FUNCCALL(SETUP_XfOrM552(_), scheme_can_unbox_directly (app -> args [3 ] ) ))
^ ~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:2710:18: note: instantiated from:
else if (FUNCCALL(SETUP_XfOrM552(_), scheme_can_unbox_directly (app -> args [3 ] ) ))
^ ~
../../../racket/gc2/../src/jitinline.c:2710:73: note: instantiated from:
else if (FUNCCALL(SETUP_XfOrM552(_), scheme_can_unbox_directly (app -> args [3 ] ) ))
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2750:9: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
FUNCCALL(SETUP_XfOrM548(_), scheme_generate_non_tail (app -> args [1 ] , jitter , 0 , 1 , 0 ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:2750:9: note: instantiated from:
FUNCCALL(SETUP_XfOrM548(_), scheme_generate_non_tail (app -> args [1 ] , jitter , 0 , 1 , 0 ) )
^ ~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:2750:9: note: instantiated from:
FUNCCALL(SETUP_XfOrM548(_), scheme_generate_non_tail (app -> args [1 ] , jitter , 0 , 1 , 0 ) )
^ ~
../../../racket/gc2/../src/jitinline.c:2750:63: note: instantiated from:
FUNCCALL(SETUP_XfOrM548(_), scheme_generate_non_tail (app -> args [1 ] , jitter , 0 , 1 , 0 ) )
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2760:9: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
FUNCCALL(SETUP_XfOrM545(_), scheme_generate_non_tail (app -> args [2 ] , jitter , 0 , 1 , 0 ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:2760:9: note: instantiated from:
FUNCCALL(SETUP_XfOrM545(_), scheme_generate_non_tail (app -> args [2 ] , jitter , 0 , 1 , 0 ) )
^ ~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:2760:9: note: instantiated from:
FUNCCALL(SETUP_XfOrM545(_), scheme_generate_non_tail (app -> args [2 ] , jitter , 0 , 1 , 0 ) )
^ ~
../../../racket/gc2/../src/jitinline.c:2760:63: note: instantiated from:
FUNCCALL(SETUP_XfOrM545(_), scheme_generate_non_tail (app -> args [2 ] , jitter , 0 , 1 , 0 ) )
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2772:9: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
FUNCCALL(SETUP_XfOrM544(_), scheme_generate_unboxed (app -> args [3 ] , jitter , flonum_arg , 0 ) );
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:2772:9: note: instantiated from:
FUNCCALL(SETUP_XfOrM544(_), scheme_generate_unboxed (app -> args [3 ] , jitter , flonum_arg , 0 ) );
^ ~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:2772:9: note: instantiated from:
FUNCCALL(SETUP_XfOrM544(_), scheme_generate_unboxed (app -> args [3 ] , jitter , flonum_arg , 0 ) );
^ ~
../../../racket/gc2/../src/jitinline.c:2772:62: note: instantiated from:
FUNCCALL(SETUP_XfOrM544(_), scheme_generate_unboxed (app -> args [3 ] , jitter , flonum_arg , 0 ) );
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2776:11: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL(SETUP_XfOrM542(_), scheme_generate (app -> args [3 ] , jitter , 0 , 0 , 0 , (0x40 + (2 ) ) , ((void * ) 0 ) ) )...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:2776:11: note: instantiated from:
FUNCCALL(SETUP_XfOrM542(_), scheme_generate (app -> args [3 ] , jitter , 0 , 0 , 0 , (0x40 + (2 ...
^ ~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:2776:11: note: instantiated from:
FUNCCALL(SETUP_XfOrM542(_), scheme_generate (app -> args [3 ] , jitter , 0 , 0 , 0 , (0x40 + (2 ...
^ ~
../../../racket/gc2/../src/jitinline.c:2776:56: note: instantiated from:
FUNCCALL(SETUP_XfOrM542(_), scheme_generate (app -> args [3 ] , jitter , 0 , 0 , 0 , (0x40 + (2 ...
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2780:11: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
FUNCCALL(SETUP_XfOrM543(_), scheme_generate_non_tail (app -> args [3 ] , jitter , 0 , 1 , 0 ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:2780:11: note: instantiated from:
FUNCCALL(SETUP_XfOrM543(_), scheme_generate_non_tail (app -> args [3 ] , jitter , 0 , 1 , 0 ) )
^ ~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:2780:11: note: instantiated from:
FUNCCALL(SETUP_XfOrM543(_), scheme_generate_non_tail (app -> args [3 ] , jitter , 0 , 1 , 0 ) )
^ ~
../../../racket/gc2/../src/jitinline.c:2780:65: note: instantiated from:
FUNCCALL(SETUP_XfOrM543(_), scheme_generate_non_tail (app -> args [3 ] , jitter , 0 , 1 , 0 ) )
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2791:9: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL(SETUP_XfOrM541(_), scheme_generate (app -> args [1 ] , jitter , 0 , 0 , 0 , (0x40 + (0 ) ) , ((void * ) 0 ) ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:2791:9: note: instantiated from:
FUNCCALL(SETUP_XfOrM541(_), scheme_generate (app -> args [1 ] , jitter , 0 , 0 , 0 , (0x40 + (0 ) ...
^ ~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:2791:9: note: instantiated from:
FUNCCALL(SETUP_XfOrM541(_), scheme_generate (app -> args [1 ] , jitter , 0 , 0 , 0 , (0x40 + (0 ) ...
^ ~
../../../racket/gc2/../src/jitinline.c:2791:54: note: instantiated from:
FUNCCALL(SETUP_XfOrM541(_), scheme_generate (app -> args [1 ] , jitter , 0 , 0 , 0 , (0x40 + (0 ) ...
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2801:11: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL(SETUP_XfOrM538(_), scheme_generate (app -> args [2 ] , jitter , 0 , 0 , 0 , (0x40 + (1 ) ) , ((void * ) 0 ) ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:2801:11: note: instantiated from:
FUNCCALL(SETUP_XfOrM538(_), scheme_generate (app -> args [2 ] , jitter , 0 , 0 , 0 , (0x40 + (1 ...
^ ~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:2801:11: note: instantiated from:
FUNCCALL(SETUP_XfOrM538(_), scheme_generate (app -> args [2 ] , jitter , 0 , 0 , 0 , (0x40 + (1 ...
^ ~
../../../racket/gc2/../src/jitinline.c:2801:56: note: instantiated from:
FUNCCALL(SETUP_XfOrM538(_), scheme_generate (app -> args [2 ] , jitter , 0 , 0 , 0 , (0x40 + (1 ...
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2855:33: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
offset = (((intptr_t ) (app -> args [2 ] ) ) >> 1 ) ;
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2916:11: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (FUNCCALL(SETUP_XfOrM509(_), scheme_is_constant_and_avoids_r1 (app -> args [1 ] ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:2916:11: note: instantiated from:
if (FUNCCALL(SETUP_XfOrM509(_), scheme_is_constant_and_avoids_r1 (app -> args [1 ] ) )
^ ~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:2916:11: note: instantiated from:
if (FUNCCALL(SETUP_XfOrM509(_), scheme_is_constant_and_avoids_r1 (app -> args [1 ] ) )
^ ~
../../../racket/gc2/../src/jitinline.c:2916:73: note: instantiated from:
if (FUNCCALL(SETUP_XfOrM509(_), scheme_is_constant_and_avoids_r1 (app -> args [1 ] ) )
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2917:10: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& FUNCCALL(SETUP_XfOrM509(_), scheme_is_constant_and_avoids_r1 (app -> args [2 ] ) )) {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:2917:10: note: instantiated from:
&& FUNCCALL(SETUP_XfOrM509(_), scheme_is_constant_and_avoids_r1 (app -> args [2 ] ) )) {
^ ~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:2917:10: note: instantiated from:
&& FUNCCALL(SETUP_XfOrM509(_), scheme_is_constant_and_avoids_r1 (app -> args [2 ] ) )) {
^ ~
../../../racket/gc2/../src/jitinline.c:2917:72: note: instantiated from:
&& FUNCCALL(SETUP_XfOrM509(_), scheme_is_constant_and_avoids_r1 (app -> args [2 ] ) )) {
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2926:11: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (FUNCCALL(SETUP_XfOrM509(_), scheme_can_unbox_inline (app -> args [3 ] , 5 , 6 - 1 , 1 ) ))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:2926:11: note: instantiated from:
if (FUNCCALL(SETUP_XfOrM509(_), scheme_can_unbox_inline (app -> args [3 ] , 5 , 6 - 1 , 1 ) ))
^ ~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:2926:11: note: instantiated from:
if (FUNCCALL(SETUP_XfOrM509(_), scheme_can_unbox_inline (app -> args [3 ] , 5 , 6 - 1 , 1 ) ))
^ ~
../../../racket/gc2/../src/jitinline.c:2926:64: note: instantiated from:
if (FUNCCALL(SETUP_XfOrM509(_), scheme_can_unbox_inline (app -> args [3 ] , 5 , 6 - 1 , 1 ) ))
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2928:16: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
else if (FUNCCALL(SETUP_XfOrM509(_), scheme_can_unbox_directly (app -> args [3 ] ) ))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:2928:16: note: instantiated from:
else if (FUNCCALL(SETUP_XfOrM509(_), scheme_can_unbox_directly (app -> args [3 ] ) ))
^ ~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:2928:16: note: instantiated from:
else if (FUNCCALL(SETUP_XfOrM509(_), scheme_can_unbox_directly (app -> args [3 ] ) ))
^ ~
../../../racket/gc2/../src/jitinline.c:2928:71: note: instantiated from:
else if (FUNCCALL(SETUP_XfOrM509(_), scheme_can_unbox_directly (app -> args [3 ] ) ))
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2934:7: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
FUNCCALL(SETUP_XfOrM509(_), scheme_generate_unboxed (app -> args [3 ] , jitter , can_direct , 1 ) );
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:2934:7: note: instantiated from:
FUNCCALL(SETUP_XfOrM509(_), scheme_generate_unboxed (app -> args [3 ] , jitter , can_direct , 1 ) );
^ ~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:2934:7: note: instantiated from:
FUNCCALL(SETUP_XfOrM509(_), scheme_generate_unboxed (app -> args [3 ] , jitter , can_direct , 1 ) );
^ ~
../../../racket/gc2/../src/jitinline.c:2934:60: note: instantiated from:
FUNCCALL(SETUP_XfOrM509(_), scheme_generate_unboxed (app -> args [3 ] , jitter , can_direct , 1 ) );
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2942:9: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL(SETUP_XfOrM513(_), scheme_generate (app -> args [2 ] , jitter , 0 , 0 , 0 , (0x40 + (1 ) ) , ((void * ) 0 ) ) )
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:2942:9: note: instantiated from:
FUNCCALL(SETUP_XfOrM513(_), scheme_generate (app -> args [2 ] , jitter , 0 , 0 , 0 , (0x40 + (1 ) ...
^ ~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:2942:9: note: instantiated from:
FUNCCALL(SETUP_XfOrM513(_), scheme_generate (app -> args [2 ] , jitter , 0 , 0 , 0 , (0x40 + (1 ) ...
^ ~
../../../racket/gc2/../src/jitinline.c:2942:54: note: instantiated from:
FUNCCALL(SETUP_XfOrM513(_), scheme_generate (app -> args [2 ] , jitter , 0 , 0 , 0 , (0x40 + (1 ) ...
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
../../../racket/gc2/../src/jitinline.c:2942:9: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...FUNCCALL(SETUP_XfOrM513(_), scheme_generate (app -> args [1 ] , jitter , 0 , 0 , 0 , (0x40 + (0 ) ) , ((void * ) 0 ) ) )...
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitinline.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitinline.c:2942:9: note: instantiated from:
FUNCCALL(SETUP_XfOrM513(_), scheme_generate (app -> args [1 ] , jitter , 0 , 0 , 0 , (0x40 + (0 ) ...
^ ~
../../../racket/gc2/../src/jitinline.c:2599:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitinline.c:2942:9: note: instantiated from:
FUNCCALL(SETUP_XfOrM513(_), scheme_generate (app -> args [1 ] , jitter , 0 , 0 , 0 , (0x40 + (0 ) ...
^ ~
../../../racket/gc2/../src/jitinline.c:2942:54: note: instantiated from:
FUNCCALL(SETUP_XfOrM513(_), scheme_generate (app -> args [1 ] , jitter , 0 , 0 , 0 , (0x40 + (0 ) ...
^ ~
In file included from xsrc/jitinline.c:1:
../../../racket/gc2/../src/schpriv.h:1079:19: note: array 'args' declared here
Scheme_Object * args [1 ] ;
^
28 warnings generated.
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/jitprep.c ../../../racket/gc2/../src/jitprep.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/jitprep.c -o jitprep.o
../../../racket/gc2/../src/jitprep.c:228:16: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((body ) == (lv -> body ) ) )
~~~~~~~~^~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitprep.c:228:16: note: use '=' to turn this equality comparison into an assignment
if (((body ) == (lv -> body ) ) )
^~
=
../../../racket/gc2/../src/jitprep.c:228:16: note: remove extraneous parentheses around the comparison to silence
this warning
if (((body ) == (lv -> body ) ) )
~ ^ ~
../../../racket/gc2/../src/jitprep.c:301:16: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((naya ) == (orig ) ) )
~~~~~~~~^~~~~~~~~~
../../../racket/gc2/../src/jitprep.c:301:16: note: use '=' to turn this equality comparison into an assignment
if (((naya ) == (orig ) ) )
^~
=
../../../racket/gc2/../src/jitprep.c:301:16: note: remove extraneous parentheses around the comparison to silence
this warning
if (((naya ) == (orig ) ) )
~ ^ ~
../../../racket/gc2/../src/jitprep.c:297:12: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
naya = FUNCCALL(SETUP_XfOrM21(_), scheme_jit_closure (orig , (((Scheme_Vector * ) (data ) ) -> els ) [1 ] ) );
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitprep.c:299:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
In file included from xsrc/jitprep.c:1:
xsrc/precomp.h:16:33: note: instantiated from:
#define FUNCCALL_once(setup, x) FUNCCALL_AGAIN_each(x)
^
../../../racket/gc2/../src/jitprep.c:297:12: note: instantiated from:
naya = FUNCCALL(SETUP_XfOrM21(_), scheme_jit_closure (orig , (((Scheme_Vector * ) (data ) ) -> els ) [1 ] ) );
^ ~
../../../racket/gc2/../src/jitprep.c:299:25: note: instantiated from:
# define FUNCCALL(s, x) FUNCCALL_once(s, x)
^
../../../racket/gc2/../src/jitprep.c:297:12: note: instantiated from:
naya = FUNCCALL(SETUP_XfOrM21(_), scheme_jit_closure (orig , (((Scheme_Vector * ) (data ) ) -> els ) [1 ] ) );
^ ~
../../../racket/gc2/../src/jitprep.c:297:66: note: instantiated from:
naya = FUNCCALL(SETUP_XfOrM21(_), scheme_jit_closure (orig , (((Scheme_Vector * ) (data ) ) -> els ) [1 ] ) );
^ ~
In file included from xsrc/jitprep.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/jitprep.c:320:20: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((naya_val ) == (orig_val ) ) )
~~~~~~~~~~~~^~~~~~~~~~~~~~
../../../racket/gc2/../src/jitprep.c:320:20: note: use '=' to turn this equality comparison into an assignment
if (((naya_val ) == (orig_val ) ) )
^~
=
../../../racket/gc2/../src/jitprep.c:320:20: note: remove extraneous parentheses around the comparison to silence
this warning
if (((naya_val ) == (orig_val ) ) )
~ ^ ~
../../../racket/gc2/../src/jitprep.c:435:16: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((naya ) == (orig ) ) )
~~~~~~~~^~~~~~~~~~
../../../racket/gc2/../src/jitprep.c:435:16: note: use '=' to turn this equality comparison into an assignment
if (((naya ) == (orig ) ) )
^~
=
../../../racket/gc2/../src/jitprep.c:435:16: note: remove extraneous parentheses around the comparison to silence
this warning
if (((naya ) == (orig ) ) )
~ ^ ~
../../../racket/gc2/../src/jitprep.c:631:33: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
orig_rp = (Resolve_Prefix * ) (((Scheme_Vector * ) (expr ) ) -> els ) [1 ] ;
^ ~
In file included from xsrc/jitprep.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/jitprep.c:640:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (expr ) ) -> els ) [1 ] = (Scheme_Object * ) rp ;
^ ~
In file included from xsrc/jitprep.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
7 warnings generated.
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/jitstack.c ../../../racket/gc2/../src/jitstack.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/jitstack.c -o jitstack.o
../../../racket/gc2/../src/jitstack.c:225:25: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((name ) ) == (scheme_void ) ) ) {
~~~~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitstack.c:225:25: note: use '=' to turn this equality comparison into an assignment
if ((((name ) ) == (scheme_void ) ) ) {
^~
=
../../../racket/gc2/../src/jitstack.c:225:25: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((name ) ) == (scheme_void ) ) ) {
~ ^ ~
../../../racket/gc2/../src/jitstack.c:238:26: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if ((((name ) ) == (scheme_eof ) ) ) {
~~~~~~~~~~~^~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitstack.c:238:26: note: use '=' to turn this equality comparison into an assignment
else if ((((name ) ) == (scheme_eof ) ) ) {
^~
=
../../../racket/gc2/../src/jitstack.c:238:26: note: remove extraneous parentheses around the comparison to silence
this warning
else if ((((name ) ) == (scheme_eof ) ) ) {
~ ^ ~
../../../racket/gc2/../src/jitstack.c:351:17: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((first ) == (scheme_null ) ) )
~~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/jitstack.c:351:17: note: use '=' to turn this equality comparison into an assignment
if (((first ) == (scheme_null ) ) )
^~
=
../../../racket/gc2/../src/jitstack.c:351:17: note: remove extraneous parentheses around the comparison to silence
this warning
if (((first ) == (scheme_null ) ) )
~ ^ ~
3 warnings generated.
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/jitstate.c ../../../racket/gc2/../src/jitstate.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/jitstate.c -o jitstate.o
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/list.c ../../../racket/gc2/../src/list.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/list.c -o list.o
../../../racket/gc2/../src/list.c:1080:21: warning: equality comparison with extraneous parentheses [-Wparentheses]
else if (((obj1 ) == (scheme_null ) ) )
~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/list.c:1080:21: note: use '=' to turn this equality comparison into an assignment
else if (((obj1 ) == (scheme_null ) ) )
^~
=
../../../racket/gc2/../src/list.c:1080:21: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((obj1 ) == (scheme_null ) ) )
~ ^ ~
../../../racket/gc2/../src/list.c:1094:18: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((obj1 ) == (scheme_null ) ) ) {
~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/list.c:1094:18: note: use '=' to turn this equality comparison into an assignment
if (((obj1 ) == (scheme_null ) ) ) {
^~
=
../../../racket/gc2/../src/list.c:1094:18: note: remove extraneous parentheses around the comparison to silence
this warning
if (((obj1 ) == (scheme_null ) ) ) {
~ ^ ~
../../../racket/gc2/../src/list.c:1110:18: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((obj1 ) == (scheme_null ) ) ) {
~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/list.c:1110:18: note: use '=' to turn this equality comparison into an assignment
if (((obj1 ) == (scheme_null ) ) ) {
^~
=
../../../racket/gc2/../src/list.c:1110:18: note: remove extraneous parentheses around the comparison to silence
this warning
if (((obj1 ) == (scheme_null ) ) ) {
~ ^ ~
../../../racket/gc2/../src/list.c:1405:20: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((list ) == (turtle ) ) )
~~~~~~~~^~~~~~~~~~~~
../../../racket/gc2/../src/list.c:1405:20: note: use '=' to turn this equality comparison into an assignment
if (((list ) == (turtle ) ) )
^~
=
../../../racket/gc2/../src/list.c:1405:20: note: remove extraneous parentheses around the comparison to silence
this warning
if (((list ) == (turtle ) ) )
~ ^ ~
../../../racket/gc2/../src/list.c:1406:23: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((argv [0 ] ) == ((((Scheme_Simple_Object * ) (list ) ) -> u . pair_val . car ) ) ) ) {
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/list.c:1406:23: note: use '=' to turn this equality comparison into an assignment
if (((argv [0 ] ) == ((((Scheme_Simple_Object * ) (list ) ) -> u . pair_val . car ) ) ) ) {
^~
=
../../../racket/gc2/../src/list.c:1406:23: note: remove extraneous parentheses around the comparison to silence
this warning
if (((argv [0 ] ) == ((((Scheme_Simple_Object * ) (list ) ) -> u . pair_val . car ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/list.c:1406:25: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((argv [0 ] ) == ((((Scheme_Simple_Object * ) (list ) ) -> u . pair_val . car ) ) ) ) {
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/list.c:1406:25: note: use '=' to turn this equality comparison into an assignment
if (((argv [0 ] ) == ((((Scheme_Simple_Object * ) (list ) ) -> u . pair_val . car ) ) ) ) {
^~
=
../../../racket/gc2/../src/list.c:1406:25: note: remove extraneous parentheses around the comparison to silence
this warning
if (((argv [0 ] ) == ((((Scheme_Simple_Object * ) (list ) ) -> u . pair_val . car ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/list.c:1406:20: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((list ) == (turtle ) ) )
~~~~~~~~^~~~~~~~~~~~
../../../racket/gc2/../src/list.c:1406:20: note: use '=' to turn this equality comparison into an assignment
if (((list ) == (turtle ) ) )
^~
=
../../../racket/gc2/../src/list.c:1406:20: note: remove extraneous parentheses around the comparison to silence
this warning
if (((list ) == (turtle ) ) )
~ ^ ~
../../../racket/gc2/../src/list.c:1407:20: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((list ) == (turtle ) ) )
~~~~~~~~^~~~~~~~~~~~
../../../racket/gc2/../src/list.c:1407:20: note: use '=' to turn this equality comparison into an assignment
if (((list ) == (turtle ) ) )
^~
=
../../../racket/gc2/../src/list.c:1407:20: note: remove extraneous parentheses around the comparison to silence
this warning
if (((list ) == (turtle ) ) )
~ ^ ~
../../../racket/gc2/../src/list.c:1454:22: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((list ) == (turtle ) ) )
~~~~~~~~^~~~~~~~~~~~
../../../racket/gc2/../src/list.c:1454:22: note: use '=' to turn this equality comparison into an assignment
if (((list ) == (turtle ) ) )
^~
=
../../../racket/gc2/../src/list.c:1454:22: note: remove extraneous parentheses around the comparison to silence
this warning
if (((list ) == (turtle ) ) )
~ ^ ~
../../../racket/gc2/../src/list.c:1455:23: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((argv [0 ] ) == ((((Scheme_Simple_Object * ) (pair ) ) -> u . pair_val . car ) ) ) ) {
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/list.c:1455:23: note: use '=' to turn this equality comparison into an assignment
if (((argv [0 ] ) == ((((Scheme_Simple_Object * ) (pair ) ) -> u . pair_val . car ) ) ) ) {
^~
=
../../../racket/gc2/../src/list.c:1455:23: note: remove extraneous parentheses around the comparison to silence
this warning
if (((argv [0 ] ) == ((((Scheme_Simple_Object * ) (pair ) ) -> u . pair_val . car ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/list.c:1455:27: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((argv [0 ] ) == ((((Scheme_Simple_Object * ) (pair ) ) -> u . pair_val . car ) ) ) )
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/list.c:1455:27: note: use '=' to turn this equality comparison into an assignment
if (((argv [0 ] ) == ((((Scheme_Simple_Object * ) (pair ) ) -> u . pair_val . car ) ) ) )
^~
=
../../../racket/gc2/../src/list.c:1455:27: note: remove extraneous parentheses around the comparison to silence
this warning
if (((argv [0 ] ) == ((((Scheme_Simple_Object * ) (pair ) ) -> u . pair_val . car ) ) ) )
~ ^ ~
../../../racket/gc2/../src/list.c:1455:22: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((list ) == (turtle ) ) )
~~~~~~~~^~~~~~~~~~~~
../../../racket/gc2/../src/list.c:1455:22: note: use '=' to turn this equality comparison into an assignment
if (((list ) == (turtle ) ) )
^~
=
../../../racket/gc2/../src/list.c:1455:22: note: remove extraneous parentheses around the comparison to silence
this warning
if (((list ) == (turtle ) ) )
~ ^ ~
../../../racket/gc2/../src/list.c:1456:22: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((list ) == (turtle ) ) )
~~~~~~~~^~~~~~~~~~~~
../../../racket/gc2/../src/list.c:1456:22: note: use '=' to turn this equality comparison into an assignment
if (((list ) == (turtle ) ) )
^~
=
../../../racket/gc2/../src/list.c:1456:22: note: remove extraneous parentheses around the comparison to silence
this warning
if (((list ) == (turtle ) ) )
~ ^ ~
../../../racket/gc2/../src/list.c:2704:3: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (redirects ) ) -> els ) [1 ] = argv [2 ] ;
^ ~
In file included from xsrc/list.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/list.c:2705:3: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (redirects ) ) -> els ) [2 ] = argv [3 ] ;
^ ~
In file included from xsrc/list.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/list.c:2706:3: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (redirects ) ) -> els ) [3 ] = argv [4 ] ;
^ ~
In file included from xsrc/list.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/list.c:2786:16: warning: equality comparison with extraneous parentheses [-Wparentheses]
if ((((o ) ) == (scheme_false ) ) )
~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/list.c:2786:16: note: use '=' to turn this equality comparison into an assignment
if ((((o ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/list.c:2786:16: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((o ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/list.c:2871:21: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((o ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/list.c:2871:21: note: use '=' to turn this equality comparison into an assignment
if (((o ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
^~
=
../../../racket/gc2/../src/list.c:2871:21: note: remove extraneous parentheses around the comparison to silence
this warning
if (((o ) == (((Scheme_Object * ) 0x6 ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/list.c:2876:26: warning: equality comparison with extraneous parentheses [-Wparentheses]
if (((vals ) == (p -> values_buffer ) ) )
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/list.c:2876:26: note: use '=' to turn this equality comparison into an assignment
if (((vals ) == (p -> values_buffer ) ) )
^~
=
../../../racket/gc2/../src/list.c:2876:26: note: remove extraneous parentheses around the comparison to silence
this warning
if (((vals ) == (p -> values_buffer ) ) )
~ ^ ~
19 warnings generated.
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/marshal.c ../../../racket/gc2/../src/marshal.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/marshal.c -o marshal.o
../../../racket/gc2/../src/marshal.c:351:22: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((cl -> name ) == (scheme_null ) ) )
~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/marshal.c:351:22: note: use '=' to turn this equality comparison into an assignment
if (((cl -> name ) == (scheme_null ) ) )
^~
=
../../../racket/gc2/../src/marshal.c:351:22: note: remove extraneous parentheses around the comparison to silence
this warning
if (((cl -> name ) == (scheme_null ) ) )
~ ^ ~
../../../racket/gc2/../src/marshal.c:718:32: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((data -> code ) == (ds ) ) )
~~~~~~~~~~~~~~~~^~~~~~~~
../../../racket/gc2/../src/marshal.c:718:32: note: use '=' to turn this equality comparison into an assignment
if (((data -> code ) == (ds ) ) )
^~
=
../../../racket/gc2/../src/marshal.c:718:32: note: remove extraneous parentheses around the comparison to silence
this warning
if (((data -> code ) == (ds ) ) )
~ ^ ~
../../../racket/gc2/../src/marshal.c:721:34: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((data -> code ) == ((((Scheme_Small_Object * ) (ds ) ) -> u . ptr_val ) ) ) )
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/marshal.c:721:34: note: use '=' to turn this equality comparison into an assignment
if (((data -> code ) == ((((Scheme_Small_Object * ) (ds ) ) -> u . ptr_val ) ) ) )
^~
=
../../../racket/gc2/../src/marshal.c:721:34: note: remove extraneous parentheses around the comparison to silence
this warning
if (((data -> code ) == ((((Scheme_Small_Object * ) (ds ) ) -> u . ptr_val ) ) ) )
~ ^ ~
../../../racket/gc2/../src/marshal.c:648:13: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
src = (((Scheme_Vector * ) (name ) ) -> els ) [1 ] ;
^ ~
In file included from xsrc/marshal.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/marshal.c:760:7: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (tl_map ) ) -> els ) [1 ] = ((Scheme_Object * ) (void * ) (intptr_t ) ...
^ ~
In file included from xsrc/marshal.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/marshal.c:846:24: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((data -> name ) == (scheme_null ) ) )
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/marshal.c:846:24: note: use '=' to turn this equality comparison into an assignment
if (((data -> name ) == (scheme_null ) ) )
^~
=
../../../racket/gc2/../src/marshal.c:846:24: note: remove extraneous parentheses around the comparison to silence
this warning
if (((data -> name ) == (scheme_null ) ) )
~ ^ ~
../../../racket/gc2/../src/marshal.c:1082:20: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((stx ) ) == (scheme_false ) ) ) {
~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/marshal.c:1082:20: note: use '=' to turn this equality comparison into an assignment
if ((((stx ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/marshal.c:1082:20: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((stx ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/marshal.c:1353:16: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((e ) ) == (scheme_false ) ) )
~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/marshal.c:1353:16: note: use '=' to turn this equality comparison into an assignment
if ((((e ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/marshal.c:1353:16: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((e ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/marshal.c:1374:26: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((m -> rn_stx ) ) == (scheme_false ) ) )
~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/marshal.c:1374:26: note: use '=' to turn this equality comparison into an assignment
if ((((m -> rn_stx ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/marshal.c:1374:26: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((m -> rn_stx ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/marshal.c:1467:19: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (0 ) ) << 1 ) | 0x1 ) ) ) ) ) {
~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/marshal.c:1467:19: note: use '=' to turn this equality comparison into an assignment
if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (0 ) ) << 1 ) | 0x1 ) ) ) ) ) {
^~
=
../../../racket/gc2/../src/marshal.c:1467:19: note: remove extraneous parentheses around the comparison to silence
this warning
if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (0 ) ) << 1 ) | 0x1 ) ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/marshal.c:1469:24: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (1 ) ) << 1 ) | 0x1 ) ) ) ) ) {
~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/marshal.c:1469:24: note: use '=' to turn this equality comparison into an assignment
else if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (1 ) ) << 1 ) | 0x1 ) ) ) ) ) {
^~
=
../../../racket/gc2/../src/marshal.c:1469:24: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (1 ) ) << 1 ) | 0x1 ) ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/marshal.c:1471:24: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((phase ) == (scheme_false ) ) ) {
~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/marshal.c:1471:24: note: use '=' to turn this equality comparison into an assignment
else if (((phase ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/marshal.c:1471:24: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((phase ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/marshal.c:1542:22: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((esnom ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/marshal.c:1542:22: note: use '=' to turn this equality comparison into an assignment
if ((((esnom ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/marshal.c:1542:22: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((esnom ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/marshal.c:1553:21: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((esph ) ) == (scheme_false ) ) )
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/marshal.c:1553:21: note: use '=' to turn this equality comparison into an assignment
if ((((esph ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/marshal.c:1553:21: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((esph ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/marshal.c:1564:22: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((einsp ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/marshal.c:1564:22: note: use '=' to turn this equality comparison into an assignment
if ((((einsp ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/marshal.c:1564:22: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((einsp ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/marshal.c:1572:68: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((((((Scheme_Vector * ) (einsp ) ) -> els ) [i ] ) ) == (scheme_void ) ) ) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/marshal.c:1572:68: note: use '=' to turn this equality comparison into an assignment
if (((((((Scheme_Vector * ) (einsp ) ) -> els ) [i ] ) ) == (scheme_void ) ) ) {
^~
=
../../../racket/gc2/../src/marshal.c:1572:68: note: remove extraneous parentheses around the comparison to silence
this warning
if (((((((Scheme_Vector * ) (einsp ) ) -> els ) [i ] ) ) == (scheme_void ) ) ) {
~ ^ ~
../../../racket/gc2/../src/marshal.c:1585:18: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((esp ) ) == (scheme_false ) ) ) {
~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/marshal.c:1585:18: note: use '=' to turn this equality comparison into an assignment
if ((((esp ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/marshal.c:1585:18: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((esp ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/marshal.c:1596:19: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((eesp ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/marshal.c:1596:19: note: use '=' to turn this equality comparison into an assignment
if ((((eesp ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/marshal.c:1596:19: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((eesp ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/marshal.c:1358:39: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
&& ((Scheme_Type ) (((((intptr_t ) ((((Scheme_Vector * ) (e ) ) -> els ) [1 ] ) ) & 0x1 ) ? (Scheme_Type ...
^ ~
In file included from xsrc/marshal.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/marshal.c:1358:153: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...) scheme_integer_type : ((Scheme_Object * ) ((((Scheme_Vector * ) (e ) ) -> els ) [1 ] ) ) -> type ) ) == ...
^ ~
In file included from xsrc/marshal.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/marshal.c:1615:26: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (! (((intptr_t ) ((((Scheme_Vector * ) (e ) ) -> els ) [2 ] ) ) & 0x1 ) )
^ ~
In file included from xsrc/marshal.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/marshal.c:1616:44: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
if (! ((Scheme_Type ) (((((intptr_t ) ((((Scheme_Vector * ) (e ) ) -> els ) [3 ] ) ) & 0x1 ) ? ...
^ ~
In file included from xsrc/marshal.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/marshal.c:1616:158: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
...) scheme_integer_type : ((Scheme_Object * ) ((((Scheme_Vector * ) (e ) ) -> els ) [3 ] ) ) -> type ) ) == ...
^ ~
In file included from xsrc/marshal.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
23 warnings generated.
env XFORM_USE_PRECOMP=xsrc/precomp.h ../racketcgc -cqu ../../../racket/gc2/xform.rkt --setup . --cpp "clang -E -I./.. -I../../../racket/gc2/../include -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common " --keep-lines -o xsrc/module.c ../../../racket/gc2/../src/module.c
clang -I./.. -I../../../racket/gc2/../include -g -O2 -DOS_X -D_DARWIN_UNLIMITED_SELECT -pthread -fno-common -c xsrc/module.c -o module.o
../../../racket/gc2/../src/module.c:622:16: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((name ) == (kernel_modname ) ) )
~~~~~~~~^~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:622:16: note: use '=' to turn this equality comparison into an assignment
if (((name ) == (kernel_modname ) ) )
^~
=
../../../racket/gc2/../src/module.c:622:16: note: remove extraneous parentheses around the comparison to silence
this warning
if (((name ) == (kernel_modname ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:624:21: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((name ) == (unsafe_modname ) ) )
~~~~~~~~^~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:624:21: note: use '=' to turn this equality comparison into an assignment
else if (((name ) == (unsafe_modname ) ) )
^~
=
../../../racket/gc2/../src/module.c:624:21: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((name ) == (unsafe_modname ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:626:21: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((name ) == (flfxnum_modname ) ) )
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:626:21: note: use '=' to turn this equality comparison into an assignment
else if (((name ) == (flfxnum_modname ) ) )
^~
=
../../../racket/gc2/../src/module.c:626:21: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((name ) == (flfxnum_modname ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:628:21: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((name ) == (futures_modname ) ) )
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:628:21: note: use '=' to turn this equality comparison into an assignment
else if (((name ) == (futures_modname ) ) )
^~
=
../../../racket/gc2/../src/module.c:628:21: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((name ) == (futures_modname ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:636:16: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((name ) == (kernel_modname ) ) )
~~~~~~~~^~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:636:16: note: use '=' to turn this equality comparison into an assignment
if (((name ) == (kernel_modname ) ) )
^~
=
../../../racket/gc2/../src/module.c:636:16: note: remove extraneous parentheses around the comparison to silence
this warning
if (((name ) == (kernel_modname ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:638:21: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((name ) == (flfxnum_modname ) ) )
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:638:21: note: use '=' to turn this equality comparison into an assignment
else if (((name ) == (flfxnum_modname ) ) )
^~
=
../../../racket/gc2/../src/module.c:638:21: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((name ) == (flfxnum_modname ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:640:21: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((name ) == (futures_modname ) ) )
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:640:21: note: use '=' to turn this equality comparison into an assignment
else if (((name ) == (futures_modname ) ) )
^~
=
../../../racket/gc2/../src/module.c:640:21: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((name ) == (futures_modname ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:642:21: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((name ) == (unsafe_modname ) ) )
~~~~~~~~^~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:642:21: note: use '=' to turn this equality comparison into an assignment
else if (((name ) == (unsafe_modname ) ) )
^~
=
../../../racket/gc2/../src/module.c:642:21: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((name ) == (unsafe_modname ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:894:16: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((insp ) == (scheme_true ) ) )
~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:894:16: note: use '=' to turn this equality comparison into an assignment
if (((insp ) == (scheme_true ) ) )
^~
=
../../../racket/gc2/../src/module.c:894:16: note: remove extraneous parentheses around the comparison to silence
this warning
if (((insp ) == (scheme_true ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:985:24: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((name ) == (srcm -> me -> rt -> provides [i ] ) ) ) {
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:985:24: note: use '=' to turn this equality comparison into an assignment
if (((name ) == (srcm -> me -> rt -> provides [i ] ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:985:24: note: remove extraneous parentheses around the comparison to silence
this warning
if (((name ) == (srcm -> me -> rt -> provides [i ] ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:1037:29: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((srcmname ) ) == (scheme_false ) ) )
~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:1037:29: note: use '=' to turn this equality comparison into an assignment
if ((((srcmname ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/module.c:1037:29: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((srcmname ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:1065:28: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((name ) == (srcm -> indirect_provides [i ] ) ) ) {
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:1065:28: note: use '=' to turn this equality comparison into an assignment
if (((name ) == (srcm -> indirect_provides [i ] ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:1065:28: note: remove extraneous parentheses around the comparison to silence
this warning
if (((name ) == (srcm -> indirect_provides [i ] ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:1227:13: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((l ) == (scheme_null ) ) ) {
~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:1227:13: note: use '=' to turn this equality comparison into an assignment
if (((l ) == (scheme_null ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:1227:13: note: remove extraneous parentheses around the comparison to silence
this warning
if (((l ) == (scheme_null ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:1238:72: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((((Scheme_Simple_Object * ) (l ) ) -> u . pair_val . cdr ) ) == (scheme_null ) ) ) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:1238:72: note: use '=' to turn this equality comparison into an assignment
if ((((((Scheme_Simple_Object * ) (l ) ) -> u . pair_val . cdr ) ) == (scheme_null ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:1238:72: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((((Scheme_Simple_Object * ) (l ) ) -> u . pair_val . cdr ) ) == (scheme_null ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:1468:36: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((menv -> module ) == (m2 ) ) )
~~~~~~~~~~~~~~~~~~^~~~~~~~
../../../racket/gc2/../src/module.c:1468:36: note: use '=' to turn this equality comparison into an assignment
if (((menv -> module ) == (m2 ) ) )
^~
=
../../../racket/gc2/../src/module.c:1468:36: note: remove extraneous parentheses around the comparison to silence
this warning
if (((menv -> module ) == (m2 ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:1603:28: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((past_todos ) == (scheme_null ) ) ) {
~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:1603:28: note: use '=' to turn this equality comparison into an assignment
if (((past_todos ) == (scheme_null ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:1603:28: note: remove extraneous parentheses around the comparison to silence
this warning
if (((past_todos ) == (scheme_null ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:1630:30: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((future_todos ) == (scheme_null ) ) ) {
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:1630:30: note: use '=' to turn this equality comparison into an assignment
if (((future_todos ) == (scheme_null ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:1630:30: note: remove extraneous parentheses around the comparison to silence
this warning
if (((future_todos ) == (scheme_null ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:1613:25: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
from_modchain = (((Scheme_Vector * ) (from_modchain ) ) -> els ) [2 ] ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:1640:25: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
from_modchain = (((Scheme_Vector * ) (from_modchain ) ) -> els ) [1 ] ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:1644:27: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
to_modchain = (((Scheme_Vector * ) (to_modchain ) ) -> els ) [1 ] ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:1811:23: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
from_modchain = (((Scheme_Vector * ) (from_modchain ) ) -> els ) [1 ] ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:1815:21: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
to_modchain = (((Scheme_Vector * ) (to_modchain ) ) -> els ) [1 ] ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:1865:21: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
from_modchain = (((Scheme_Vector * ) (from_modchain ) ) -> els ) [2 ] ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:1867:21: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
to_modchain = (((Scheme_Vector * ) (to_modchain ) ) -> els ) [2 ] ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:1937:18: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((name ) == (unsafe_modname ) ) )
~~~~~~~~^~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:1937:18: note: use '=' to turn this equality comparison into an assignment
if (((name ) == (unsafe_modname ) ) )
^~
=
../../../racket/gc2/../src/module.c:1937:18: note: remove extraneous parentheses around the comparison to silence
this warning
if (((name ) == (unsafe_modname ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:2197:74: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((((Scheme_Simple_Object * ) (obj ) ) -> u . pair_val . car ) ) == (quote_symbol ) ) ) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:2197:74: note: use '=' to turn this equality comparison into an assignment
if ((((((Scheme_Simple_Object * ) (obj ) ) -> u . pair_val . car ) ) == (quote_symbol ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:2197:74: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((((Scheme_Simple_Object * ) (obj ) ) -> u . pair_val . car ) ) == (quote_symbol ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:2200:78: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((((Scheme_Simple_Object * ) (obj ) ) -> u . pair_val . cdr ) ) == (scheme_null ) ) ) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:2200:78: note: use '=' to turn this equality comparison into an assignment
if ((((((Scheme_Simple_Object * ) (obj ) ) -> u . pair_val . cdr ) ) == (scheme_null ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:2200:78: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((((Scheme_Simple_Object * ) (obj ) ) -> u . pair_val . cdr ) ) == (scheme_null ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:2207:79: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if ((((((Scheme_Simple_Object * ) (obj ) ) -> u . pair_val . car ) ) == (lib_symbol ) ) ) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:2207:79: note: use '=' to turn this equality comparison into an assignment
else if ((((((Scheme_Simple_Object * ) (obj ) ) -> u . pair_val . car ) ) == (lib_symbol ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:2207:79: note: remove extraneous parentheses around the comparison to silence
this warning
else if ((((((Scheme_Simple_Object * ) (obj ) ) -> u . pair_val . car ) ) == (lib_symbol ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:2222:21: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((obj ) == (scheme_null ) ) )
~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:2222:21: note: use '=' to turn this equality comparison into an assignment
if (((obj ) == (scheme_null ) ) )
^~
=
../../../racket/gc2/../src/module.c:2222:21: note: remove extraneous parentheses around the comparison to silence
this warning
if (((obj ) == (scheme_null ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:2228:79: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if ((((((Scheme_Simple_Object * ) (obj ) ) -> u . pair_val . car ) ) == (file_symbol ) ) ) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:2228:79: note: use '=' to turn this equality comparison into an assignment
else if ((((((Scheme_Simple_Object * ) (obj ) ) -> u . pair_val . car ) ) == (file_symbol ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:2228:79: note: remove extraneous parentheses around the comparison to silence
this warning
else if ((((((Scheme_Simple_Object * ) (obj ) ) -> u . pair_val . car ) ) == (file_symbol ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:2246:79: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if ((((((Scheme_Simple_Object * ) (obj ) ) -> u . pair_val . car ) ) == (planet_symbol ) ) ) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:2246:79: note: use '=' to turn this equality comparison into an assignment
else if ((((((Scheme_Simple_Object * ) (obj ) ) -> u . pair_val . car ) ) == (planet_symbol ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:2246:79: note: remove extraneous parentheses around the comparison to silence
this warning
else if ((((((Scheme_Simple_Object * ) (obj ) ) -> u . pair_val . car ) ) == (planet_symbol ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:2396:22: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((exs [i ] ) == (module_begin_symbol ) ) )
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:2396:22: note: use '=' to turn this equality comparison into an assignment
if (((exs [i ] ) == (module_begin_symbol ) ) )
^~
=
../../../racket/gc2/../src/module.c:2396:22: note: remove extraneous parentheses around the comparison to silence
this warning
if (((exs [i ] ) == (module_begin_symbol ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:2403:7: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [1 ] = midx ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:2404:7: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [2 ] = exsns [i ] ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:2405:7: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [3 ] = ((i < numvals ) ? scheme_true : scheme_false ) ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:2406:7: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [4 ] = exs [i ] ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:2407:7: warning: array index of '5' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [5 ] = orig_src ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:2408:7: warning: array index of '6' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [6 ] = mark_src ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:2409:7: warning: array index of '7' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [7 ] = (can_override ? scheme_true : scheme_false ) ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:2410:7: warning: array index of '8' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [8 ] = exets ? ((Scheme_Object * ) (void * ) (intptr_t ) ...
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:2411:7: warning: array index of '9' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [9 ] = exinsps ? exinsps [i ] : scheme_false ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:2438:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
(((Scheme_Vector * ) (vec ) ) -> els ) [1 ] = (Scheme_Object * ) res ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:2442:43: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
RET_VALUE_START ((Scheme_Hash_Table * ) (((Scheme_Vector * ) (vec ) ) -> els ) [1 ] ) RET_VALUE_END ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:2469:29: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((import_shift ) ) == (scheme_false ) ) )
~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:2469:29: note: use '=' to turn this equality comparison into an assignment
if ((((import_shift ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/module.c:2469:29: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((import_shift ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:2499:35: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((import_shift ) ) == (scheme_false ) ) )
~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:2499:35: note: use '=' to turn this equality comparison into an assignment
if ((((import_shift ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/module.c:2499:35: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((import_shift ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:2542:57: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((m -> me -> rt -> provide_srcs [i ] ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:2542:57: note: use '=' to turn this equality comparison into an assignment
if ((((m -> me -> rt -> provide_srcs [i ] ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:2542:57: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((m -> me -> rt -> provide_srcs [i ] ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:2992:19: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((rmp_val ) == (o ) ) )
~~~~~~~~~~~^~~~~~~
../../../racket/gc2/../src/module.c:2992:19: note: use '=' to turn this equality comparison into an assignment
if (((rmp_val ) == (o ) ) )
^~
=
../../../racket/gc2/../src/module.c:2992:19: note: remove extraneous parentheses around the comparison to silence
this warning
if (((rmp_val ) == (o ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:3098:18: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((name ) == (m -> me -> rt -> provides [i ] ) ) ) {
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:3098:18: note: use '=' to turn this equality comparison into an assignment
if (((name ) == (m -> me -> rt -> provides [i ] ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:3098:18: note: remove extraneous parentheses around the comparison to silence
this warning
if (((name ) == (m -> me -> rt -> provides [i ] ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:3175:18: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((modidx ) == (empty_self_modidx ) ) )
~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:3175:18: note: use '=' to turn this equality comparison into an assignment
if (((modidx ) == (empty_self_modidx ) ) )
^~
=
../../../racket/gc2/../src/module.c:3175:18: note: remove extraneous parentheses around the comparison to silence
this warning
if (((modidx ) == (empty_self_modidx ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:3178:55: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((((Scheme_Modidx * ) modidx ) -> resolved ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:3178:55: note: use '=' to turn this equality comparison into an assignment
if ((((((Scheme_Modidx * ) modidx ) -> resolved ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:3178:55: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((((Scheme_Modidx * ) modidx ) -> resolved ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:3205:23: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((a [0 ] ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:3205:23: note: use '=' to turn this equality comparison into an assignment
if ((((a [0 ] ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:3205:23: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((a [0 ] ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:3274:18: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((modidx ) == (shift_from_modidx ) ) )
~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:3274:18: note: use '=' to turn this equality comparison into an assignment
if (((modidx ) == (shift_from_modidx ) ) )
^~
=
../../../racket/gc2/../src/module.c:3274:18: note: remove extraneous parentheses around the comparison to silence
this warning
if (((modidx ) == (shift_from_modidx ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:3300:26: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((sbase ) == (empty_self_modidx ) ) ) {
~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:3300:26: note: use '=' to turn this equality comparison into an assignment
else if (((sbase ) == (empty_self_modidx ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:3300:26: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((sbase ) == (empty_self_modidx ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:3314:24: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((modidx ) == ((((Scheme_Vector * ) (cvec ) ) -> els ) [i ] ) ) )
~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:3314:24: note: use '=' to turn this equality comparison into an assignment
if (((modidx ) == ((((Scheme_Vector * ) (cvec ) ) -> els ) [i ] ) ) )
^~
=
../../../racket/gc2/../src/module.c:3314:24: note: remove extraneous parentheses around the comparison to silence
this warning
if (((modidx ) == ((((Scheme_Vector * ) (cvec ) ) -> els ) [i ] ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:3448:46: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((pt -> provide_srcs [i ] ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:3448:46: note: use '=' to turn this equality comparison into an assignment
if ((((pt -> provide_srcs [i ] ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:3448:46: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((pt -> provide_srcs [i ] ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:3468:46: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((pt -> provide_srcs [i ] ) ) == (scheme_false ) ) ) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:3468:46: note: use '=' to turn this equality comparison into an assignment
if ((((pt -> provide_srcs [i ] ) ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:3468:46: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((pt -> provide_srcs [i ] ) ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:3497:24: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((chain ) ) == (scheme_false ) ) )
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:3497:24: note: use '=' to turn this equality comparison into an assignment
if ((((chain ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/module.c:3497:24: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((chain ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:3496:15: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
chain = ((((Scheme_Vector * ) (chain ) ) -> els ) ) [2 ] ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:3550:23: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((in_modidx ) == (midx ) ) )
~~~~~~~~~~~~~^~~~~~~~~~
../../../racket/gc2/../src/module.c:3550:23: note: use '=' to turn this equality comparison into an assignment
if (((in_modidx ) == (midx ) ) )
^~
=
../../../racket/gc2/../src/module.c:3550:23: note: remove extraneous parentheses around the comparison to silence
this warning
if (((in_modidx ) == (midx ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:3849:19: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((modname ) == (kernel_modname ) ) ) {
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:3849:19: note: use '=' to turn this equality comparison into an assignment
if (((modname ) == (kernel_modname ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:3849:19: note: remove extraneous parentheses around the comparison to silence
this warning
if (((modname ) == (kernel_modname ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:3892:31: warning: equality comparison with extraneous parentheses
[-Wparentheses]
...-> u . pair_val . cdr ) ) == ((Scheme_Object * ) XFORM_OK_ASSIGN (scheme_get_thread_local_variables () -> scheme_current_thread_ ) )...
~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:3892:31: note: use '=' to turn this equality comparison into an assignment
-> u . pair_val . cdr ) ) == ((Scheme_Object * ) XFORM_OK_ASSIGN (scheme_get_thread_local_variables () ...
^~
=
../../../racket/gc2/../src/module.c:3892:31: note: remove extraneous parentheses around the comparison to silence
this warning
...== ((Scheme_Object * ) XFORM_OK_ASSIGN (scheme_get_thread_local_variables () -> scheme_current_thread_ ) ) )...
^ ~
../../../racket/gc2/../src/module.c:3896:5: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
a [1 ] = (((Scheme_Simple_Object * ) (
^ ~
../../../racket/gc2/../src/module.c:3885:3: note: array 'a' declared here
Scheme_Object *
^
../../../racket/gc2/../src/module.c:3989:17: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (0 ) ) << 1 ) | 0x1 ) ) ) ) ) {
~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:3989:17: note: use '=' to turn this equality comparison into an assignment
if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (0 ) ) << 1 ) | 0x1 ) ) ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:3989:17: note: remove extraneous parentheses around the comparison to silence
this warning
if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (0 ) ) << 1 ) | 0x1 ) ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:3992:22: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (1 ) ) << 1 ) | 0x1 ) ) ) ) ) {
~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:3992:22: note: use '=' to turn this equality comparison into an assignment
else if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (1 ) ) << 1 ) | 0x1 ) ) ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:3992:22: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (1 ) ) << 1 ) | 0x1 ) ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:3995:22: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (- 1 ) ) << 1 ) | 0x1 ) ) ) ) ) {
~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:3995:22: note: use '=' to turn this equality comparison into an assignment
else if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (- 1 ) ) << 1 ) | 0x1 ) ) ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:3995:22: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (- 1 ) ) << 1 ) | 0x1 ) ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:3998:22: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((phase ) == (scheme_false ) ) ) {
~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:3998:22: note: use '=' to turn this equality comparison into an assignment
else if (((phase ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:3998:22: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((phase ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:4037:19: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (0 ) ) << 1 ) | 0x1 ) ) ) ) ) {
~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:4037:19: note: use '=' to turn this equality comparison into an assignment
if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (0 ) ) << 1 ) | 0x1 ) ) ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:4037:19: note: remove extraneous parentheses around the comparison to silence
this warning
if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (0 ) ) << 1 ) | 0x1 ) ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:4039:24: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (1 ) ) << 1 ) | 0x1 ) ) ) ) ) {
~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:4039:24: note: use '=' to turn this equality comparison into an assignment
else if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (1 ) ) << 1 ) | 0x1 ) ) ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:4039:24: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (1 ) ) << 1 ) | 0x1 ) ) ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:4041:24: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (- 1 ) ) << 1 ) | 0x1 ) ) )...
~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:4041:24: note: use '=' to turn this equality comparison into an assignment
else if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (- 1 ) ) << 1 ) | 0x1 ...
^~
=
../../../racket/gc2/../src/module.c:4041:24: note: remove extraneous parentheses around the comparison to silence
this warning
...if (((phase ) == (((Scheme_Object * ) (void * ) (intptr_t ) ((((intptr_t ) (- 1 ) ) << 1 ) | 0x1 ) ) ) ) ) ...
~ ^ ~
../../../racket/gc2/../src/module.c:4043:24: warning: equality comparison with extraneous parentheses
[-Wparentheses]
else if (((phase ) == (scheme_false ) ) ) {
~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:4043:24: note: use '=' to turn this equality comparison into an assignment
else if (((phase ) == (scheme_false ) ) ) {
^~
=
../../../racket/gc2/../src/module.c:4043:24: note: remove extraneous parentheses around the comparison to silence
this warning
else if (((phase ) == (scheme_false ) ) ) {
~ ^ ~
../../../racket/gc2/../src/module.c:4298:32: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if ((((exss [i ] ) ) == (scheme_false ) ) )
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
../../../racket/gc2/../src/module.c:4298:32: note: use '=' to turn this equality comparison into an assignment
if ((((exss [i ] ) ) == (scheme_false ) ) )
^~
=
../../../racket/gc2/../src/module.c:4298:32: note: remove extraneous parentheses around the comparison to silence
this warning
if ((((exss [i ] ) ) == (scheme_false ) ) )
~ ^ ~
../../../racket/gc2/../src/module.c:4385:32: warning: array index of '2' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
let_depth = (((intptr_t ) ((((Scheme_Vector * ) (e ) ) -> els ) [2 ] ) ) >> 1 ) ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:4386:30: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
rp = (Resolve_Prefix * ) (((Scheme_Vector * ) (e ) ) -> els ) [3 ] ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:4387:21: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
for_stx = (! ((((((Scheme_Vector * ) (e ) ) -> els ) [4 ] ) ) == (scheme_false ) ) ) ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:4388:9: warning: array index of '1' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
e = (((Scheme_Vector * ) (e ) ) -> els ) [1 ] ;
^ ~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:4431:36: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
menv -> available_next [0 ] = ((((Scheme_Vector * ) (menv -> modchain ) ) -> els ) [3 + 0 ] ) ;
^ ~~~~~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:4432:6: warning: array index of '3' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
((((Scheme_Vector * ) (menv -> modchain ) ) -> els ) [3 + 0 ] ) = (Scheme_Object * ) menv ;
^ ~~~~~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:4435:36: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
menv -> available_next [1 ] = ((((Scheme_Vector * ) (menv -> modchain ) ) -> els ) [3 + 1 ] ) ;
^ ~~~~~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:4436:6: warning: array index of '4' indexes past the end of an array
(that contains 1 elements) [-Warray-bounds]
((((Scheme_Vector * ) (menv -> modchain ) ) -> els ) [3 + 1 ] ) = (Scheme_Object * ) menv ;
^ ~~~~~
In file included from xsrc/module.c:1:
../../../racket/gc2/../include/scheme.h:308:19: note: array 'els' declared here
Scheme_Object * els [1 ] ;
^
../../../racket/gc2/../src/module.c:4453:26: warning: equality comparison with extraneous parentheses
[-Wparentheses]
if (((m -> modname ) == ((((Scheme_Simple_Object * ) (l ) ) -> u . pair_val . car ) ) ) ) {
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../../racket/gc2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment