jit/backend/aarch64/test/test_zrpy_vmprof.py::TestZVMprof::()::test_vmprof
self = <rpython.jit.backend.aarch64.test.test_zrpy_vmprof.TestZVMprof object at 0x0000000c4d971750>
def test_vmprof(self):
from rpython.rlib import rvmprof
class MyCode:
_vmprof_unique_id = 0
_vmprof_weak_list = RWeakListMixin() ; _vmprof_weak_list.initialize()
def __init__(self, name):
self.name = name
def get_name(code):
return code.name
code2 = MyCode("py:y:foo:4")
rvmprof.register_code(code2, get_name)
try:
rvmprof.register_code_object_class(MyCode, get_name)
except rvmprof.VMProfPlatformUnsupported as e:
py.test.skip(str(e))
def get_unique_id(code):
return rvmprof.get_unique_id(code)
driver = JitDriver(greens = ['code'], reds = ['i', 's', 'num'],
is_recursive=True, get_unique_id=get_unique_id)
@rvmprof.vmprof_execute_code("xcode13", lambda code, num: code)
def main(code, num):
return main_jitted(code, num)
def main_jitted(code, num):
s = 0
i = 0
while i < num:
driver.jit_merge_point(code=code, i=i, s=s, num=num)
s += (i << 1)
if i % 3 == 0 and code is not code2:
main(code2, 100)
i += 1
return s
tmpfilename = str(udir.join('test_rvmprof'))
def f(num):
rthread.get_ident() # register TLOFS_thread_ident
code = MyCode("py:x:foo:3")
rvmprof.register_code(code, get_name)
fd = os.open(tmpfilename, os.O_WRONLY | os.O_CREAT, 0666)
period = 0.0001
rvmprof.enable(fd, period)
res = main(code, num)
#assert res == 499999500000
rvmprof.disable()
os.close(fd)
return 0
def check_vmprof_output():
from vmprof import read_profile
tmpfile = str(udir.join('test_rvmprof'))
stats = read_profile(tmpfile)
t = stats.get_tree()
assert t.name == 'py:x:foo:3'
assert len(t.children) == 1 # jit
> self.meta_interp(f, [1000000], inline=True)
jit/backend/llsupport/test/zrpy_vmprof_test.py:84:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
jit/backend/test/support.py:75: in meta_interp
return self._compile_and_run(t, entry_point, entry_point_graph, args)
jit/backend/test/support.py:134: in _compile_and_run
stdout = cbuilder.cmdexec(" ".join([str(arg) for arg in args]))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <rpython.translator.c.genc.CStandaloneBuilder object at 0x0000000c3b424250>
args = '1000000', env = None, err = False, expect_crash = False
exe = local('/var/folders/df/djsxfhc17x95674wsm_g8s980000gn/T/usession-pypy-HEAD-29/testing_1/testing_1')
def cmdexec(self, args='', env=None, err=False, expect_crash=False, exe=None):
assert self._compiled
if sys.platform == 'win32':
#Prevent opening a dialog box
import ctypes
winapi = ctypes.windll.kernel32
SetErrorMode = winapi.SetErrorMode
SetErrorMode.argtypes=[ctypes.c_int]
SEM_FAILCRITICALERRORS = 1
SEM_NOGPFAULTERRORBOX = 2
SEM_NOOPENFILEERRORBOX = 0x8000
flags = SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX \
| SEM_NOOPENFILEERRORBOX
#Since there is no GetErrorMode, do a double Set
old_mode = SetErrorMode(flags)
SetErrorMode(old_mode | flags)
if env is None:
envrepr = ''
else:
envrepr = ' [env=%r]' % (env,)
env.update(os.environ)
if exe is None:
exe = self.executable_name
log.cmdexec('%s %s%s' % (exe, args, envrepr))
res = self.translator.platform.execute(exe, args, env=env)
if sys.platform == 'win32':
SetErrorMode(old_mode)
if res.returncode != 0:
if expect_crash:
if type(expect_crash) is int and expect_crash != res.returncode:
raise Exception("Returned %d, but expected %d" % (
res.returncode, expect_crash))
return res.out, res.err
print(res.err, file=sys.stderr)
> raise Exception("Returned %d" % (res.returncode,))
E Exception: Returned -11
translator/c/genc.py:318: Exception
---------- Captured stdout call ----------
in get_rpath_flags, rel_libdirs is not fixed up ['/opt/homebrew/lib']
---------- Captured stderr call ----------
[rtyper] specializing: 100 / 663 blocks (15%)
[rtyper] specializing: 200 / 752 blocks (26%)
[rtyper] specializing: 300 / 754 blocks (39%)
[rtyper] specializing: 400 / 754 blocks (53%)
[rtyper] specializing: 500 / 754 blocks (66%)
[rtyper] specializing: 600 / 759 blocks (79%)
[rtyper] specializing: 700 / 759 blocks (92%)
[rtyper] -=- specialized 763 blocks -=-
[rtyper] -=- specialized 4 more blocks -=-
[rtyper] specializing: 800 / 1062 blocks (75%)
[rtyper] specializing: 900 / 1062 blocks (84%)
[rtyper] specializing: 1000 / 1062 blocks (94%)
[rtyper] -=- specialized 295 more blocks -=-
[rtyper] -=- specialized 6 more blocks -=-
[rtyper] -=- specialized 2 more blocks -=-
[rtyper] -=- specialized 2 more blocks -=-
[rtyper] -=- specialized 6 more blocks -=-
[rtyper] -=- specialized 15 more blocks -=-
[rtyper] -=- specialized 2 more blocks -=-
[backendopt:inlining] phase with threshold factor: 32.4
[backendopt:inlining] heuristic: rpython.translator.backendopt.inline.inlining_heuristic
[backendopt:inlining] inlined 5 callsites.
[backendopt:malloc] starting malloc removal
[backendopt:malloc] removed 1 simple mallocs in total
[backendopt:mergeifblocks] starting to merge if blocks
[rtyper] specializing: 1100 / 1103 blocks (99%)
[rtyper] -=- specialized 8 more blocks -=-
[jitcodewriter:info] making JitCodes...
[rtyper] -=- specialized 2 more blocks -=-
[rtyper] -=- specialized 2 more blocks -=-
[jitcodewriter:info] There are 4 JitCode instances.
[jitcodewriter:info] There are 12 -live- ops. Size of liveness is 22 bytes
[jitcodewriter] compute_bitstrings:
[jitcodewriter] 7 effectinfos:
[jitcodewriter] 0 descrs for arrays
[jitcodewriter] 0 descrs for fields
[jitcodewriter] 0 descrs for interiorfields
[jitcodewriter] -> 1 bitstrings, mean length 0.0, max length 0
[rtyper] specializing: 1700 / 33544 blocks (5%)
[rtyper] specializing: 3600 / 35821 blocks (10%)
[rtyper] specializing: 6000 / 39538 blocks (15%)
[rtyper] specializing: 8500 / 42105 blocks (20%)
[rtyper] specializing: 10700 / 42449 blocks (25%)
[rtyper] specializing: 12800 / 42449 blocks (30%)
[rtyper] specializing: 14900 / 42459 blocks (35%)
[rtyper] specializing: 17000 / 42459 blocks (40%)
[rtyper] specializing: 19300 / 42798 blocks (45%)
[rtyper] specializing: 23700 / 47285 blocks (50%)
[rtyper] specializing: 26200 / 47475 blocks (55%)
[rtyper] specializing: 28500 / 47496 blocks (60%)
[rtyper] specializing: 30900 / 47496 blocks (65%)
[rtyper] specializing: 32500 / 47496 blocks (68%)
[rtyper] specializing: 34700 / 47496 blocks (73%)
[rtyper] specializing: 37200 / 47595 blocks (78%)
[rtyper] specializing: 39600 / 47595 blocks (83%)
[rtyper] specializing: 41900 / 47595 blocks (88%)
[rtyper] specializing: 44300 / 47595 blocks (93%)
[rtyper] specializing: 46700 / 47595 blocks (98%)
[rtyper] specializing: 47500 / 47597 blocks (99%)
[rtyper] -=- specialized 46490 more blocks -=-
[rtyper] specializing: 47600 / 47623 blocks (99%)
[rtyper] -=- specialized 26 more blocks -=-
[rtyper] -=- specialized 0 more blocks -=-
[rtyper] -=- specialized 25 more blocks -=-
[rtyper] specializing: 47700 / 50110 blocks (95%)
[rtyper] -=- specialized 2525 more blocks -=-
[rtyper] specializing: 50200 / 50249 blocks (99%)
[rtyper] -=- specialized 76 more blocks -=-
[backendopt:inlining] phase with threshold factor: 32.4
[backendopt:inlining] heuristic: rpython.translator.backendopt.inline.inlining_heuristic
[backendopt:inlining] inlined 1669 callsites.
[backendopt:malloc] starting malloc removal
[backendopt:malloc] removed 35 simple mallocs in total
[backendopt:mergeifblocks] starting to merge if blocks
[rtyper] -=- specialized 17 more blocks -=-
[rtyper] -=- specialized 12 more blocks -=-
[rtyper] -=- specialized 5 more blocks -=-
[rtyper] -=- specialized 0 more blocks -=-
[c] 1000 nodes [ array: 1118 framework rtti: 18 func: 192 group: 1 struct: 2354 ]
[c] 2000 nodes [ array: 3118 framework rtti: 18 func: 192 group: 1 struct: 2354 ]
[c] 3000 nodes [ array: 4189 framework rtti: 19 func: 259 group: 1 struct: 2377 ]
[c] 4000 nodes [ array: 4189 framework rtti: 19 func: 259 group: 1 struct: 2377 ]
[c] 5000 nodes [ array: 4189 framework rtti: 19 func: 259 group: 1 struct: 2377 ]
[c] 6000 nodes [ array: 4189 framework rtti: 19 func: 259 group: 1 struct: 2377 ]
[c] 7000 nodes [ array: 4265 framework rtti: 22 func: 398 group: 1 struct: 2456 ]
[c] 8000 nodes [ array: 4476 framework rtti: 38 func: 874 group: 1 struct: 3079 ]
[c] 9000 nodes [ array: 4766 framework rtti: 45 func: 1182 group: 1 struct: 3516 ]
[c] 10000 nodes [ array: 4811 framework rtti: 77 func: 1588 group: 1 struct: 5322 ]
[c] 11000 nodes [ array: 4811 framework rtti: 215 func: 1823 group: 1 struct: 5460 ]
[c] 12000 nodes [ array: 4904 framework rtti: 284 func: 2089 group: 1 struct: 5707 ]
[c] 13000 nodes [ array: 5120 framework rtti: 284 func: 2266 group: 1 struct: 5803 ]
[c] 14000 nodes [ array: 5173 framework rtti: 292 func: 2744 group: 1 struct: 6016 ]
[c] 15000 nodes [ array: 5227 framework rtti: 298 func: 3580 group: 1 struct: 6108 ]
[c] 16000 nodes [ array: 5263 framework rtti: 302 func: 4324 group: 1 struct: 6227 ]
[c:database] GC transformer: finished helpers
[c] 17000 nodes [ array: 5719 framework rtti: 313 func: 4442 group: 1 struct: 6978 ]
[c] 18000 nodes [ array: 5778 framework rtti: 363 func: 5143 group: 1 struct: 7113 ]
[c] 19000 nodes [ array: 5816 framework rtti: 375 func: 6328 group: 1 struct: 7994 ]
[c] 20000 nodes [ array: 5834 framework rtti: 378 func: 8270 group: 1 struct: 8040 ]
[c] 21000 nodes [ array: 5834 framework rtti: 378 func: 8307 group: 1 struct: 8041 ]
[c] 22000 nodes [ array: 5834 framework rtti: 378 func: 8357 group: 1 struct: 8041 ]
[c] 23000 nodes [ array: 5888 framework rtti: 391 func: 8627 group: 1 struct: 8191 ]
[c] 24000 nodes [ array: 6022 framework rtti: 414 func: 9129 group: 1 struct: 8556 ]
[rtyper] specializing: 50300 / 50342 blocks (99%)
[rtyper] -=- specialized 59 more blocks -=-
[backendopt:inlining] phase with threshold factor: 32.4
[backendopt:inlining] heuristic: rpython.translator.backendopt.inline.inlining_heuristic
[backendopt:inlining] inlined 4 callsites.
[backendopt:malloc] starting malloc removal
[backendopt:malloc] removed 16 simple mallocs in total
[backendopt:mergeifblocks] starting to merge if blocks
[c:database] GC transformer: finished tables
[gctransform:info] assigned 1190 typeids
[gctransform:info] added 24359 push/pop stack root instructions
[gctransform:info] inserted 601 write barrier calls
[gctransform:info] inserted 221 write_barrier_from_array calls
[gctransform:info] found 3 static roots
[c:database] Inlining GC helpers and postprocessing
[c] 24714 nodes [ array: 6114 framework rtti: 455 func: 9414 group: 1 struct: 8730 ]
[c:database] Completed
[c:writing] structdef.h
[c:writing] forwarddecl.h
[c:writing] preimpl.h
[c:writing] data_rpython_flowspace.c
[c:writing] data_rpython_jit_backend.c
[c:writing] data_rpython_jit_backend_aarch64.c
[c:writing] data_rpython_jit_backend_arm.c
[c:writing] data_rpython_jit_backend_llsupport.c
[c:writing] data_rpython_jit_backend_llsupport_test.c
[c:writing] data_rpython_jit_codewriter.c
[c:writing] data_rpython_jit_metainterp.c
[c:writing] data_rpython_jit_metainterp_optimizeopt.c
[c:writing] data_rpython_memory_gc.c
[c:writing] data_rpython_memory_gctransform.c
[c:writing] data_rpython_rlib.c
[c:writing] data_rpython_rlib_rjitlog.c
[c:writing] data_rpython_rlib_rvmprof.c
[c:writing] data_rpython_rtyper.c
[c:writing] data_rpython_rtyper_lltypesystem.c
[c:writing] nonfuncnodes.c
[c:writing] data_rpython_jit_backend_aarch64_1.c
[c:writing] data_rpython_jit_backend_llsupport_1.c
[c:writing] data_rpython_jit_codewriter_1.c
[c:writing] data_rpython_jit_metainterp_1.c
[c:writing] data_rpython_memory_gc_1.c
[c:writing] data_rpython_rlib_1.c
[c:writing] data_rpython_rlib_rvmprof_1.c
[c:writing] data_rpython_rtyper_lltypesystem_1.c
[c:writing] implement.c
[c:writing] rpython_flowspace.c
[c:writing] rpython_jit_backend.c
[c:writing] rpython_jit_backend_aarch64.c
[c:writing] rpython_jit_backend_aarch64_1.c
[c:writing] rpython_jit_backend_arm.c
[c:writing] rpython_jit_backend_llsupport.c
[c:writing] rpython_jit_backend_llsupport_test.c
[c:writing] rpython_jit_codewriter.c
[c:writing] rpython_jit_metainterp.c
[c:writing] rpython_jit_metainterp_1.c
[c:writing] rpython_jit_metainterp_2.c
[c:writing] rpython_jit_metainterp_3.c
[c:writing] rpython_jit_metainterp_4.c
[c:writing] rpython_jit_metainterp_optimizeopt.c
[c:writing] rpython_jit_metainterp_optimizeopt_1.c
[c:writing] rpython_jit_metainterp_optimizeopt_2.c
[c:writing] rpython_jit_metainterp_optimizeopt_3.c
[c:writing] rpython_memory.c
[c:writing] rpython_memory_gc.c
[c:writing] rpython_memory_gctransform.c
[c:writing] rpython_rlib.c
[c:writing] rpython_rlib_rjitlog.c
[c:writing] rpython_rlib_rvmprof.c
[c:writing] rpython_rtyper.c
[c:writing] rpython_rtyper_lltypesystem.c
[c:writing] rpython_rtyper_lltypesystem_1.c
[c:writing] rpython_rtyper_lltypesystem_2.c
[c:writing] rpython_rtyper_lltypesystem_3.c
[c:writing] rpython_rtyper_lltypesystem_module.c
[c:writing] rpython_tool_algo.c
[c:writing] rpython_translator.c
[c:writing] rpython_translator_c.c
[platform:execute] make in /var/folders/df/djsxfhc17x95674wsm_g8s980000gn/T/usession-pypy-HEAD-29/testing_1
[platform:WARNING] rpython_jit_backend_aarch64.c:14114:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 14114 | RPyItem(l_v17257, 1L) = l_v17258;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:14115:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 14115 | RPyItem(l_v17257, 2L) = (&pypy_g_rpy_string_920.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:14132:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 14132 | RPyItem(l_v17257, 3L) = l_v17259;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:14133:2: warning: array index 4 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 14133 | RPyItem(l_v17257, 4L) = (&pypy_g_rpy_string_921.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:14164:2: warning: array index 5 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 14164 | RPyItem(l_v17257, 5L) = l_v17260;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:14165:2: warning: array index 6 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 14165 | RPyItem(l_v17257, 6L) = (&pypy_g_rpy_string_922.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:14196:2: warning: array index 7 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 14196 | RPyItem(l_v17257, 7L) = l_v17261;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:14197:2: warning: array index 8 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 14197 | RPyItem(l_v17257, 8L) = (&pypy_g_rpy_string_923.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:14228:2: warning: array index 9 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 14228 | RPyItem(l_v17257, 9L) = l_v17262;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:14229:2: warning: array index 10 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 14229 | RPyItem(l_v17257, 10L) = (&pypy_g_rpy_string_842.b);
[platform:WARNING] | ^ ~~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:14373:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 14373 | RPyItem(l_v17265, 1L) = l_v17266;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:14518:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 14518 | RPyItem(l_v17269, 1L) = l_v17270;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:14663:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 14663 | RPyItem(l_v17273, 1L) = l_v17274;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:14808:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 14808 | RPyItem(l_v17277, 1L) = l_v17278;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:14953:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 14953 | RPyItem(l_v17281, 1L) = l_v17282;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:21748:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 21748 | RPyItem(l_v20901, 1L) = l_v20902;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:21749:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 21749 | RPyItem(l_v20901, 2L) = (&pypy_g_rpy_string_963.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:30422:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 30422 | RPyItem(l_v24686, 1L) = l_v24687;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:30423:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 30423 | RPyItem(l_v24686, 2L) = (&pypy_g_rpy_string_963.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:38992:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 38992 | RPyItem(l_v28306, 1L) = l_v28307;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:38993:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 38993 | RPyItem(l_v28306, 2L) = (&pypy_g_rpy_string_963.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:40338:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 40338 | RPyItem(l_v28835, 1L) = l_v28836;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:40339:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 40339 | RPyItem(l_v28835, 2L) = (&pypy_g_rpy_string_963.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:42217:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 42217 | RPyItem(l_v29236, 1L) = l_v29237;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:42218:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 42218 | RPyItem(l_v29236, 2L) = (&pypy_g_rpy_string_966.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:42254:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 42254 | RPyItem(l_v29236, 3L) = l_v29238;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:42255:2: warning: array index 4 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 42255 | RPyItem(l_v29236, 4L) = (&pypy_g_rpy_string_922.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:42291:2: warning: array index 5 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 42291 | RPyItem(l_v29236, 5L) = l_v29239;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:42455:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 42455 | RPyItem(l_v29242, 1L) = l_v29243;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:42620:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 42620 | RPyItem(l_v29246, 1L) = l_v29247;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:42785:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 42785 | RPyItem(l_v29250, 1L) = l_v29251;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:42950:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 42950 | RPyItem(l_v29254, 1L) = l_v29255;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64.c:43115:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 43115 | RPyItem(l_v29258, 1L) = l_v29259;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] 33 warnings generated.
[platform:WARNING] rpython_jit_backend_aarch64_1.c:169:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 169 | RPyItem(l_v40062, 1L) = l_v40063;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64_1.c:170:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 170 | RPyItem(l_v40062, 2L) = (&pypy_g_rpy_string_963.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64_1.c:661:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 661 | RPyItem(l_v40245, 1L) = l_v40246;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_aarch64_1.c:662:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 662 | RPyItem(l_v40245, 2L) = (&pypy_g_rpy_string_963.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] 4 warnings generated.
[platform:WARNING] rpython_jit_backend_llsupport.c:4151:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 4151 | RPyItem(l_v42454, 1L) = l_v42455;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:4575:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 4575 | RPyItem(l_v42557, 1L) = l_v42558;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:6788:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 6788 | RPyItem(l_v43174, 1L) = l_v43175;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:7334:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 7334 | RPyItem(l_v43321, 1L) = l_v43322;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:7335:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 7335 | RPyItem(l_v43321, 2L) = (&pypy_g_rpy_string_301.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:7362:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 7362 | RPyItem(l_v43321, 3L) = l_v43323;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:7363:2: warning: array index 4 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 7363 | RPyItem(l_v43321, 4L) = (&pypy_g_rpy_string_232.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:8284:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 8284 | RPyItem(l_v43600, 1L) = l_v43601;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:8285:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 8285 | RPyItem(l_v43600, 2L) = (&pypy_g_rpy_string_301.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:8302:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 8302 | RPyItem(l_v43600, 3L) = l_v43602;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:8303:2: warning: array index 4 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 8303 | RPyItem(l_v43600, 4L) = (&pypy_g_rpy_string_301.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:8334:2: warning: array index 5 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 8334 | RPyItem(l_v43600, 5L) = l_v43603;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:8351:2: warning: array index 6 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 8351 | RPyItem(l_v43600, 6L) = l_v43604;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:8352:2: warning: array index 7 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 8352 | RPyItem(l_v43600, 7L) = (&pypy_g_rpy_string_232.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:8711:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 8711 | RPyItem(l_v43748, 1L) = l_v43749;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:8712:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 8712 | RPyItem(l_v43748, 2L) = (&pypy_g_rpy_string_301.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:8741:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 8741 | RPyItem(l_v43748, 3L) = l_v43750;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:8929:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 8929 | RPyItem(l_v43752, 1L) = l_v43753;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:9113:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 9113 | RPyItem(l_v43755, 1L) = l_v43756;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:9114:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 9114 | RPyItem(l_v43755, 2L) = (&pypy_g_rpy_string_232.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:9238:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 9238 | RPyItem(l_v43757, 1L) = l_v43758;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:10065:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 10065 | RPyItem(l_v44254, 1L) = l_v44255;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:10066:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 10066 | RPyItem(l_v44254, 2L) = (&pypy_g_rpy_string_232.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:17488:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 17488 | RPyItem(l_v46344, 1L) = l_v46345;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:17489:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 17489 | RPyItem(l_v46344, 2L) = (&pypy_g_rpy_string_961.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:17506:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 17506 | RPyItem(l_v46344, 3L) = l_v46346;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:17507:2: warning: array index 4 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 17507 | RPyItem(l_v46344, 4L) = (&pypy_g_rpy_string_65.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:51958:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 51958 | RPyItem(l_v59847, 1L) = l_v59848;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:51959:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 51959 | RPyItem(l_v59847, 2L) = (&pypy_g_rpy_string_232.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:53928:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 53928 | RPyItem(l_v60405, 1L) = l_v60406;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_backend_llsupport.c:54363:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 54363 | RPyItem(l_v60501, 1L) = l_v60502;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] 31 warnings generated.
[platform:WARNING] rpython_jit_codewriter.c:1445:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 1445 | RPyItem(l_v61227, 1L) = l_v61228;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_codewriter.c:1446:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 1446 | RPyItem(l_v61227, 2L) = (&pypy_g_rpy_string_973.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_codewriter.c:1463:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 1463 | RPyItem(l_v61227, 3L) = l_v61229;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] 3 warnings generated.
[platform:WARNING] rpython_jit_metainterp.c:6411:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 6411 | RPyItem(l_v63665, 1L) = l_v63666;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp.c:10533:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 10533 | RPyItem(l_v65174, 1L) = l_v65175;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp.c:16316:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 16316 | RPyItem(l_v66898, 1L) = l_v66899;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp.c:16317:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 16317 | RPyItem(l_v66898, 2L) = (&pypy_g_rpy_string_301.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp.c:16351:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 16351 | RPyItem(l_v66898, 3L) = l_v66900;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp.c:16696:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 16696 | RPyItem(l_v66907, 1L) = l_v66908;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp.c:16697:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 16697 | RPyItem(l_v66907, 2L) = (&pypy_g_rpy_string_301.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp.c:16730:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 16730 | RPyItem(l_v66907, 3L) = l_v66909;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp.c:45749:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 45749 | RPyItem(l_v76538, 1L) = l_v76539;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp.c:45750:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 45750 | RPyItem(l_v76538, 2L) = (&pypy_g_rpy_string_586.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] 10 warnings generated.
[platform:WARNING] rpython_jit_metainterp_1.c:4990:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 4990 | RPyItem(l_v84822, 1L) = l_v84823;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:4991:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 4991 | RPyItem(l_v84822, 2L) = (&pypy_g_rpy_string_844.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:5830:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 5830 | RPyItem(l_v84848, 1L) = l_v84849;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:5831:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 5831 | RPyItem(l_v84848, 2L) = (&pypy_g_rpy_string_232.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:6096:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 6096 | RPyItem(l_v84855, 1L) = l_v84856;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:6325:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 6325 | RPyItem(l_v84861, 1L) = l_v84862;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:6326:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 6326 | RPyItem(l_v84861, 2L) = (&pypy_g_rpy_string_104.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:6343:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 6343 | RPyItem(l_v84861, 3L) = l_v84863;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:6344:2: warning: array index 4 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 6344 | RPyItem(l_v84861, 4L) = (&pypy_g_rpy_string_842.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:6558:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 6558 | RPyItem(l_v84875, 1L) = l_v84876;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:6559:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 6559 | RPyItem(l_v84875, 2L) = (&pypy_g_rpy_string_582.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:6590:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 6590 | RPyItem(l_v84875, 3L) = l_v84877;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:6591:2: warning: array index 4 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 6591 | RPyItem(l_v84875, 4L) = (&pypy_g_rpy_string_854.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:6608:2: warning: array index 5 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 6608 | RPyItem(l_v84875, 5L) = l_v84878;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:6609:2: warning: array index 6 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 6609 | RPyItem(l_v84875, 6L) = (&pypy_g_rpy_string_855.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:10335:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 10335 | RPyItem(l_v86948, 1L) = l_v86950;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:10351:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 10351 | RPyItem(l_v86948, 2L) = l_v86951;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:10352:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 10352 | RPyItem(l_v86948, 3L) = (&pypy_g_rpy_string_846.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:10368:2: warning: array index 4 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 10368 | RPyItem(l_v86948, 4L) = l_v86952;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:10369:2: warning: array index 5 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 10369 | RPyItem(l_v86948, 5L) = (&pypy_g_rpy_string_842.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:29066:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 29066 | RPyItem(l_v93495, 1L) = l_v93496;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:29067:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 29067 | RPyItem(l_v93495, 2L) = (&pypy_g_rpy_string_232.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:29644:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 29644 | RPyItem(l_v93677, 1L) = l_v93678;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:29645:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 29645 | RPyItem(l_v93677, 2L) = (&pypy_g_rpy_string_842.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:30556:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 30556 | RPyItem(l_v93966, 1L) = (&pypy_g_rpy_string_895.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:30573:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 30573 | RPyItem(l_v93966, 2L) = l_v93968;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:42433:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 42433 | RPyItem(l_v98077, 1L) = l_v98078;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:42808:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 42808 | RPyItem(l_v98177, 1L) = l_v98178;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:42809:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 42809 | RPyItem(l_v98177, 2L) = (&pypy_g_rpy_string_842.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:51003:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 51003 | RPyItem(l_v100938, 1L) = l_v100939;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:51004:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 51004 | RPyItem(l_v100938, 2L) = (&pypy_g_rpy_string_232.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:52564:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 52564 | RPyItem(l_v101432, 1L) = l_v101433;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_1.c:64488:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 64488 | RPyItem(l_v105554, 1L) = l_v105555;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] 33 warnings generated.
[platform:WARNING] rpython_jit_metainterp_optimizeopt.c:12900:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 12900 | RPyItem(l_v154245, 1L) = l_v154246;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt.c:12901:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 12901 | RPyItem(l_v154245, 2L) = (&pypy_g_rpy_string_895.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt.c:12935:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 12935 | RPyItem(l_v154245, 3L) = l_v154247;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt.c:12936:2: warning: array index 4 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 12936 | RPyItem(l_v154245, 4L) = (&pypy_g_rpy_string_842.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt.c:61535:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 61535 | RPyItem(l_v173979, 1L) = l_v173980;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt.c:61536:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 61536 | RPyItem(l_v173979, 2L) = (&pypy_g_rpy_string_1065.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt.c:61971:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 61971 | RPyItem(l_v174127, 1L) = l_v174128;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt.c:61972:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 61972 | RPyItem(l_v174127, 2L) = (&pypy_g_rpy_string_1065.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt.c:62408:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 62408 | RPyItem(l_v174286, 1L) = l_v174287;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt.c:62409:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 62409 | RPyItem(l_v174286, 2L) = (&pypy_g_rpy_string_1065.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt.c:63084:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 63084 | RPyItem(l_v174446, 1L) = l_v174447;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt.c:63085:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 63085 | RPyItem(l_v174446, 2L) = (&pypy_g_rpy_string_1065.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] 12 warnings generated.
[platform:WARNING] rpython_jit_metainterp_optimizeopt_1.c:59756:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 59756 | RPyItem(l_v199807, 1L) = l_v199808;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_1.c:59757:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 59757 | RPyItem(l_v199807, 2L) = (&pypy_g_rpy_string_1080.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_1.c:61081:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 61081 | RPyItem(l_v200358, 1L) = l_v200359;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_1.c:61082:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 61082 | RPyItem(l_v200358, 2L) = (&pypy_g_rpy_string_1080.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] 4 warnings generated.
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:9528:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 9528 | RPyItem(l_v206011, 1L) = l_v206012;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:9529:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 9529 | RPyItem(l_v206011, 2L) = (&pypy_g_rpy_string_1065.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:9748:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 9748 | RPyItem(l_v206017, 1L) = l_v206018;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:9749:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 9749 | RPyItem(l_v206017, 2L) = (&pypy_g_rpy_string_1065.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:10415:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 10415 | RPyItem(l_v206333, 1L) = l_v206334;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:10416:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 10416 | RPyItem(l_v206333, 2L) = (&pypy_g_rpy_string_1065.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:16922:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 16922 | RPyItem(l_v208414, 1L) = l_v208415;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:16923:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 16923 | RPyItem(l_v208414, 2L) = (&pypy_g_rpy_string_1090.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:16940:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 16940 | RPyItem(l_v208414, 3L) = l_v208416;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:16941:2: warning: array index 4 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 16941 | RPyItem(l_v208414, 4L) = (&pypy_g_rpy_string_1091.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:16958:2: warning: array index 5 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 16958 | RPyItem(l_v208414, 5L) = l_v208417;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:39681:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 39681 | RPyItem(l_v217470, 1L) = (&pypy_g_rpy_string_582.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:39698:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 39698 | RPyItem(l_v217470, 2L) = l_v217472;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:40021:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 40021 | RPyItem(l_v217479, 1L) = l_v217480;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:40022:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 40022 | RPyItem(l_v217479, 2L) = (&pypy_g_rpy_string_1105.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:40039:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 40039 | RPyItem(l_v217479, 3L) = l_v217481;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:40040:2: warning: array index 4 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 40040 | RPyItem(l_v217479, 4L) = (&pypy_g_rpy_string_842.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:40311:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 40311 | RPyItem(l_v217485, 1L) = l_v217486;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:40312:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 40312 | RPyItem(l_v217485, 2L) = (&pypy_g_rpy_string_582.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:40329:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 40329 | RPyItem(l_v217485, 3L) = l_v217487;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:40330:2: warning: array index 4 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 40330 | RPyItem(l_v217485, 4L) = (&pypy_g_rpy_string_842.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:40443:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 40443 | RPyItem(l_v217488, 1L) = l_v217489;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:40444:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 40444 | RPyItem(l_v217488, 2L) = (&pypy_g_rpy_string_842.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:40570:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 40570 | RPyItem(l_v217490, 1L) = l_v217491;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:40571:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 40571 | RPyItem(l_v217490, 2L) = (&pypy_g_rpy_string_842.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:40697:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 40697 | RPyItem(l_v217494, 1L) = l_v217495;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:40698:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 40698 | RPyItem(l_v217494, 2L) = (&pypy_g_rpy_string_842.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:41187:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 41187 | RPyItem(l_v218108, 1L) = (&pypy_g_rpy_string_1110.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:41349:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 41349 | RPyItem(l_v218111, 1L) = l_v218112;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:41626:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 41626 | RPyItem(l_v218118, 1L) = l_v218119;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:41643:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 41643 | RPyItem(l_v218118, 2L) = l_v218120;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:41660:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 41660 | RPyItem(l_v218118, 3L) = l_v218121;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:41661:2: warning: array index 4 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 41661 | RPyItem(l_v218118, 4L) = (&pypy_g_rpy_string_842.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:42160:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 42160 | RPyItem(l_v218136, 1L) = l_v218137;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:42161:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 42161 | RPyItem(l_v218136, 2L) = (&pypy_g_rpy_string_842.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:51232:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 51232 | RPyItem(l_v221975, 1L) = l_v221976;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:51342:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 51342 | RPyItem(l_v221977, 1L) = l_v221978;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:55562:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 55562 | RPyItem(l_v223717, 1L) = l_v223718;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:55705:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 55705 | RPyItem(l_v223720, 1L) = l_v223721;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:55848:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 55848 | RPyItem(l_v223723, 1L) = l_v223724;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:55996:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 55996 | RPyItem(l_v223727, 1L) = l_v223728;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:56412:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 56412 | RPyItem(l_v224046, 1L) = l_v224047;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:56559:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 56559 | RPyItem(l_v224049, 1L) = l_v224050;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:56706:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 56706 | RPyItem(l_v224052, 1L) = l_v224053;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:56858:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 56858 | RPyItem(l_v224056, 1L) = l_v224057;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:57006:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 57006 | RPyItem(l_v224060, 1L) = l_v224061;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:63712:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 63712 | RPyItem(l_v226850, 1L) = l_v226851;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:64171:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 64171 | RPyItem(l_v226943, 1L) = (&pypy_g_rpy_string_582.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:64203:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 64203 | RPyItem(l_v226943, 2L) = l_v226945;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:64204:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 64204 | RPyItem(l_v226943, 3L) = (&pypy_g_rpy_string_582.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:64221:2: warning: array index 4 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 64221 | RPyItem(l_v226943, 4L) = l_v226946;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:64222:2: warning: array index 5 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 64222 | RPyItem(l_v226943, 5L) = (&pypy_g_rpy_string_582.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:64239:2: warning: array index 6 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 64239 | RPyItem(l_v226943, 6L) = l_v226947;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:64481:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 64481 | RPyItem(l_v227162, 1L) = l_v227163;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:65466:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 65466 | RPyItem(l_v227512, 1L) = l_v227513;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:65467:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 65467 | RPyItem(l_v227512, 2L) = (&pypy_g_rpy_string_582.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:65483:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 65483 | RPyItem(l_v227512, 3L) = l_v227514;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:65484:2: warning: array index 4 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 65484 | RPyItem(l_v227512, 4L) = (&pypy_g_rpy_string_582.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:65500:2: warning: array index 5 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 65500 | RPyItem(l_v227512, 5L) = l_v227515;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_2.c:65501:2: warning: array index 6 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 65501 | RPyItem(l_v227512, 6L) = (&pypy_g_rpy_string_842.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] 60 warnings generated.
[platform:WARNING] rpython_jit_metainterp_optimizeopt_3.c:1036:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 1036 | RPyItem(l_v228164, 1L) = l_v228165;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_3.c:1037:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 1037 | RPyItem(l_v228164, 2L) = (&pypy_g_rpy_string_582.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_3.c:1053:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 1053 | RPyItem(l_v228164, 3L) = l_v228166;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_3.c:1054:2: warning: array index 4 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 1054 | RPyItem(l_v228164, 4L) = (&pypy_g_rpy_string_842.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_3.c:1510:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 1510 | RPyItem(l_v228352, 1L) = l_v228353;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_3.c:1511:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 1511 | RPyItem(l_v228352, 2L) = (&pypy_g_rpy_string_842.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_3.c:5484:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 5484 | RPyItem(l_v229799, 1L) = l_v229800;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_3.c:5485:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 5485 | RPyItem(l_v229799, 2L) = (&pypy_g_rpy_string_842.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_3.c:6330:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 6330 | RPyItem(l_v230121, 1L) = l_v230122;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_3.c:6331:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 6331 | RPyItem(l_v230121, 2L) = (&pypy_g_rpy_string_842.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_3.c:16474:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 16474 | RPyItem(l_v233739, 1L) = l_v233740;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_3.c:16475:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 16475 | RPyItem(l_v233739, 2L) = (&pypy_g_rpy_string_844.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_3.c:16492:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 16492 | RPyItem(l_v233739, 3L) = l_v233741;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_3.c:16493:2: warning: array index 4 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 16493 | RPyItem(l_v233739, 4L) = (&pypy_g_rpy_string_1091.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_jit_metainterp_optimizeopt_3.c:16510:2: warning: array index 5 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 16510 | RPyItem(l_v233739, 5L) = l_v233742;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] 15 warnings generated.
[platform:WARNING] rpython_memory_gc.c:12826:20: warning: array index 1 is past the end of the array (that has type 'Signed[1]' (aka 'long[1]')) [-Warray-bounds]
[platform:WARNING] 12826 | l_offsets1_0 = RPyItem(l_offsets_7, 1L);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:1998:2: note: array 'items' declared here
[platform:WARNING] 1998 | Signed items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_memory_gc.c:16810:20: warning: array index 1 is past the end of the array (that has type 'Signed[1]' (aka 'long[1]')) [-Warray-bounds]
[platform:WARNING] 16810 | l_offsets1_1 = RPyItem(l_offsets_9, 1L);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:1998:2: note: array 'items' declared here
[platform:WARNING] 1998 | Signed items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_memory_gc.c:23137:20: warning: array index 1 is past the end of the array (that has type 'Signed[1]' (aka 'long[1]')) [-Warray-bounds]
[platform:WARNING] 23137 | l_offsets1_2 = RPyItem(l_offsets_12, 1L);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:1998:2: note: array 'items' declared here
[platform:WARNING] 1998 | Signed items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_memory_gc.c:24063:20: warning: array index 1 is past the end of the array (that has type 'Signed[1]' (aka 'long[1]')) [-Warray-bounds]
[platform:WARNING] 24063 | l_offsets1_3 = RPyItem(l_offsets_14, 1L);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:1998:2: note: array 'items' declared here
[platform:WARNING] 1998 | Signed items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_memory_gc.c:24505:20: warning: array index 1 is past the end of the array (that has type 'Signed[1]' (aka 'long[1]')) [-Warray-bounds]
[platform:WARNING] 24505 | l_offsets1_4 = RPyItem(l_offsets_15, 1L);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:1998:2: note: array 'items' declared here
[platform:WARNING] 1998 | Signed items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] 5 warnings generated.
[platform:WARNING] rpython_rlib.c:923:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 923 | RPyItem(l_v245056, 1L) = l_v245057;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_rlib.c:1251:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 1251 | RPyItem(l_v245181, 1L) = (&pypy_g_rpy_string_72.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_rlib.c:1626:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 1626 | RPyItem(l_v245294, 1L) = (&pypy_g_rpy_string_72.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_rlib.c:2601:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 2601 | RPyItem(l_v245585, 1L) = (&pypy_g_rpy_string_72.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] 4 warnings generated.
[platform:WARNING] rpython_rlib_rvmprof.c:1514:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 1514 | RPyItem(l_v251071, 1L) = l_v251072;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_rlib_rvmprof.c:1515:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 1515 | RPyItem(l_v251071, 2L) = (&pypy_g_rpy_string_103.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_rlib_rvmprof.c:1532:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 1532 | RPyItem(l_v251071, 3L) = l_v251073;
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] rpython_rlib_rvmprof.c:1533:2: warning: array index 4 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING] 1533 | RPyItem(l_v251071, 4L) = (&pypy_g_rpy_string_104.b);
[platform:WARNING] | ^ ~~
[platform:WARNING] /Users/runner/work/pypy/pypy/rpython/translator/c/src/support.h:69:47: note: expanded from macro 'RPyItem'
[platform:WARNING] 69 | # define RPyItem(array, index) ((array)->items[index])
[platform:WARNING] | ^ ~~~~~
[platform:WARNING] ./singleheader.h:3815:2: note: array 'items' declared here
[platform:WARNING] 3815 | struct pypy_rpy_string0 *items[RPY_VARLENGTH];
[platform:WARNING] | ^
[platform:WARNING] 4 warnings generated.
[platform:WARNING] rpython_rtyper_lltypesystem.c:11470:2: warning: 'pthread_jit_write_protect_np' is only available on macOS 11.0 or newer [-Wunguarded-availability-new]
[platform:WARNING] 11470 | pthread_jit_write_protect_np(l_v257544);
[platform:WARNING] | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
[platform:WARNING] /Applications/Xcode_26.6.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread.h:588:6: note: 'pthread_jit_write_protect_np' has been marked as being introduced in macOS 11.0 here, but the deployment target is macOS 10.13.0
[platform:WARNING] 588 | void pthread_jit_write_protect_np(int enabled);
[platform:WARNING] | ^
[platform:WARNING] rpython_rtyper_lltypesystem.c:11470:2: note: enclose 'pthread_jit_write_protect_np' in a __builtin_available check to silence this warning
[platform:WARNING] 11470 | pthread_jit_write_protect_np(l_v257544);
[platform:WARNING] | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
[platform:WARNING] 1 warning generated.
---------- Test starting ----------
[c:cmdexec] /var/folders/df/djsxfhc17x95674wsm_g8s980000gn/T/usession-pypy-HEAD-29/testing_1/testing_1 1000000
(somefailed=True in jit/backend/aarch64/test/test_zrpy_vmprof.py)
builder: rpython-macos-arm64 build #748*
test: jit/backend/aarch64/test/test_zrpy_vmprof.py::TestZVMprof::()::test_vmprof