Home - Summaries: (main) : (py3.11) : (py3.12) : Everything - Nightly builds - Benchmarks - RPython - Builders - About

jit/backend/aarch64/test/test_zrpy_vmprof.py::TestZVMprof::()::test_vmprof

self = <rpython.jit.backend.aarch64.test.test_zrpy_vmprof.TestZVMprof object at 0x0000000c6e596800>

    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 0x0000000c80586918>
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 / 671 blocks   (14%)
[rtyper] specializing: 200 / 760 blocks   (26%)
[rtyper] specializing: 300 / 762 blocks   (39%)
[rtyper] specializing: 400 / 762 blocks   (52%)
[rtyper] specializing: 500 / 762 blocks   (65%)
[rtyper] specializing: 600 / 767 blocks   (78%)
[rtyper] specializing: 700 / 767 blocks   (91%)
[rtyper] -=- specialized 771 blocks -=-
[rtyper] -=- specialized 4 more blocks -=-
[rtyper] specializing: 800 / 1006 blocks   (79%)
[rtyper] specializing: 900 / 1070 blocks   (84%)
[rtyper] specializing: 1000 / 1070 blocks   (93%)
[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] specializing: 1100 / 1101 blocks   (99%)
[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 2 callsites.
[backendopt:malloc] starting malloc removal
[backendopt:malloc] removed 1 simple mallocs in total
[backendopt:mergeifblocks] starting to merge if blocks
[rtyper] -=- specialized 8 more blocks -=-
[jitcodewriter:info] making JitCodes...
[jitcodewriter:info] There are 4 JitCode instances.
[jitcodewriter:info] There are 12 -live- ops. Size of liveness is 22 bytes
[jitcodewriter] compute_bitstrings:
[jitcodewriter]   4 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 / 33542 blocks   (5%)
[rtyper] specializing: 3600 / 35819 blocks   (10%)
[rtyper] specializing: 6000 / 39536 blocks   (15%)
[rtyper] specializing: 8500 / 42103 blocks   (20%)
[rtyper] specializing: 10700 / 42447 blocks   (25%)
[rtyper] specializing: 12800 / 42447 blocks   (30%)
[rtyper] specializing: 14900 / 42457 blocks   (35%)
[rtyper] specializing: 17000 / 42457 blocks   (40%)
[rtyper] specializing: 19300 / 42796 blocks   (45%)
[rtyper] specializing: 23700 / 47283 blocks   (50%)
[rtyper] specializing: 26200 / 47473 blocks   (55%)
[rtyper] specializing: 28500 / 47494 blocks   (60%)
[rtyper] specializing: 30900 / 47494 blocks   (65%)
[rtyper] specializing: 32500 / 47494 blocks   (68%)
[rtyper] specializing: 34700 / 47494 blocks   (73%)
[rtyper] specializing: 37200 / 47593 blocks   (78%)
[rtyper] specializing: 39600 / 47593 blocks   (83%)
[rtyper] specializing: 41900 / 47593 blocks   (88%)
[rtyper] specializing: 44300 / 47593 blocks   (93%)
[rtyper] specializing: 46700 / 47593 blocks   (98%)
[rtyper] specializing: 47500 / 47595 blocks   (99%)
[rtyper] -=- specialized 46484 more blocks -=-
[rtyper] specializing: 47600 / 47621 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 2527 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 1670 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: 191  group: 1  struct: 2354 ]
[c]     2000 nodes  [ array: 3118  framework rtti: 18  func: 191  group: 1  struct: 2354 ]
[c]     3000 nodes  [ array: 4189  framework rtti: 19  func: 264  group: 1  struct: 2377 ]
[c]     4000 nodes  [ array: 4189  framework rtti: 19  func: 264  group: 1  struct: 2377 ]
[c]     5000 nodes  [ array: 4189  framework rtti: 19  func: 264  group: 1  struct: 2377 ]
[c]     6000 nodes  [ array: 4189  framework rtti: 19  func: 264  group: 1  struct: 2377 ]
[c]     7000 nodes  [ array: 4265  framework rtti: 22  func: 402  group: 1  struct: 2456 ]
[c]     8000 nodes  [ array: 4475  framework rtti: 38  func: 878  group: 1  struct: 3075 ]
[c]     9000 nodes  [ array: 4766  framework rtti: 45  func: 1184  group: 1  struct: 3516 ]
[c]    10000 nodes  [ array: 4811  framework rtti: 77  func: 1591  group: 1  struct: 5322 ]
[c]    11000 nodes  [ array: 4811  framework rtti: 214  func: 1825  group: 1  struct: 5459 ]
[c]    12000 nodes  [ array: 4904  framework rtti: 284  func: 2092  group: 1  struct: 5690 ]
[c]    13000 nodes  [ array: 5118  framework rtti: 284  func: 2266  group: 1  struct: 5776 ]
[c]    14000 nodes  [ array: 5169  framework rtti: 293  func: 2781  group: 1  struct: 5973 ]
[c]    15000 nodes  [ array: 5225  framework rtti: 298  func: 3648  group: 1  struct: 6069 ]
[c]    16000 nodes  [ array: 5258  framework rtti: 302  func: 4349  group: 1  struct: 6183 ]
[c:database] GC transformer: finished helpers
[c]    17000 nodes  [ array: 5713  framework rtti: 316  func: 4441  group: 1  struct: 6937 ]
[c]    18000 nodes  [ array: 5773  framework rtti: 363  func: 5170  group: 1  struct: 7074 ]
[c]    19000 nodes  [ array: 5810  framework rtti: 375  func: 6402  group: 1  struct: 7950 ]
[c]    20000 nodes  [ array: 5828  framework rtti: 378  func: 8269  group: 1  struct: 7996 ]
[c]    21000 nodes  [ array: 5828  framework rtti: 378  func: 8310  group: 1  struct: 7997 ]
[c]    22000 nodes  [ array: 5828  framework rtti: 378  func: 8360  group: 1  struct: 7997 ]
[c]    23000 nodes  [ array: 5886  framework rtti: 391  func: 8682  group: 1  struct: 8149 ]
[c]    24000 nodes  [ array: 6021  framework rtti: 423  func: 9147  group: 1  struct: 8526 ]
[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]    24661 nodes  [ array: 6108  framework rtti: 455  func: 9413  group: 1  struct: 8684 ]
[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_v17238, 1L) = l_v17239;
[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_v17238, 2L) = (&pypy_g_rpy_string_916.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_v17238, 3L) = l_v17240;
[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_v17238, 4L) = (&pypy_g_rpy_string_917.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_v17238, 5L) = l_v17241;
[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_v17238, 6L) = (&pypy_g_rpy_string_918.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_v17238, 7L) = l_v17242;
[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_v17238, 8L) = (&pypy_g_rpy_string_919.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_v17238, 9L) = l_v17243;
[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_v17238, 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_v17246, 1L) = l_v17247;
[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_v17250, 1L) = l_v17251;
[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_v17254, 1L) = l_v17255;
[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_v17258, 1L) = 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: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_v17262, 1L) = l_v17263;
[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_v20882, 1L) = l_v20883;
[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_v20882, 2L) = (&pypy_g_rpy_string_959.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_v24667, 1L) = l_v24668;
[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_v24667, 2L) = (&pypy_g_rpy_string_959.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_v28287, 1L) = l_v28288;
[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_v28287, 2L) = (&pypy_g_rpy_string_959.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_v28816, 1L) = l_v28817;
[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_v28816, 2L) = (&pypy_g_rpy_string_959.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_v29217, 1L) = l_v29218;
[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_v29217, 2L) = (&pypy_g_rpy_string_962.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_v29217, 3L) = l_v29219;
[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_v29217, 4L) = (&pypy_g_rpy_string_918.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_v29217, 5L) = l_v29220;
[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_v29223, 1L) = l_v29224;
[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_v29227, 1L) = l_v29228;
[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_v29231, 1L) = l_v29232;
[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_v29235, 1L) = l_v29236;
[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_v29239, 1L) = l_v29240;
[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_v40043, 1L) = l_v40044;
[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_v40043, 2L) = (&pypy_g_rpy_string_959.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_v40226, 1L) = l_v40227;
[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_v40226, 2L) = (&pypy_g_rpy_string_959.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_v42435, 1L) = l_v42436;
[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_v42538, 1L) = l_v42539;
[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_v43155, 1L) = l_v43156;
[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_v43302, 1L) = l_v43303;
[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_v43302, 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_v43302, 3L) = l_v43304;
[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_v43302, 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_v43581, 1L) = l_v43582;
[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_v43581, 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_v43581, 3L) = l_v43583;
[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_v43581, 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_v43581, 5L) = l_v43584;
[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_v43581, 6L) = l_v43585;
[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_v43581, 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_v43729, 1L) = l_v43730;
[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_v43729, 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_v43729, 3L) = l_v43731;
[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_v43733, 1L) = l_v43734;
[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_v43736, 1L) = l_v43737;
[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_v43736, 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_v43738, 1L) = l_v43739;
[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_v44235, 1L) = l_v44236;
[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_v44235, 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_v46325, 1L) = l_v46326;
[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_v46325, 2L) = (&pypy_g_rpy_string_957.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_v46325, 3L) = l_v46327;
[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_v46325, 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_v59828, 1L) = l_v59829;
[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_v59828, 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_v60386, 1L) = l_v60387;
[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_v60482, 1L) = l_v60483;
[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:1427:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  1427 |         RPyItem(l_v61204, 1L) = l_v61205;
[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:1428:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  1428 |         RPyItem(l_v61204, 2L) = (&pypy_g_rpy_string_969.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:1445:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  1445 |         RPyItem(l_v61204, 3L) = l_v61206;
[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_v63642, 1L) = l_v63643;
[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_v65151, 1L) = l_v65152;
[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_v66875, 1L) = l_v66876;
[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_v66875, 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_v66875, 3L) = l_v66877;
[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_v66884, 1L) = l_v66885;
[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_v66884, 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_v66884, 3L) = l_v66886;
[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_v76515, 1L) = l_v76516;
[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_v76515, 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_v84799, 1L) = l_v84800;
[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_v84799, 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_v84825, 1L) = l_v84826;
[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_v84825, 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_v84832, 1L) = l_v84833;
[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_v84838, 1L) = l_v84839;
[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_v84838, 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_v84838, 3L) = l_v84840;
[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_v84838, 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_v84852, 1L) = l_v84853;
[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_v84852, 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_v84852, 3L) = l_v84854;
[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_v84852, 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_v84852, 5L) = l_v84855;
[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_v84852, 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_v86925, 1L) = l_v86927;
[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_v86925, 2L) = l_v86928;
[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_v86925, 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_v86925, 4L) = l_v86929;
[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_v86925, 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:29065:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  29065 |         RPyItem(l_v93471, 1L) = l_v93472;
[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 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  29066 |         RPyItem(l_v93471, 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:29643:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  29643 |         RPyItem(l_v93653, 1L) = l_v93654;
[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 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  29644 |         RPyItem(l_v93653, 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:30555:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  30555 |         RPyItem(l_v93942, 1L) = (&pypy_g_rpy_string_893.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:30572:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  30572 |         RPyItem(l_v93942, 2L) = l_v93944;
[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:42432:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  42432 |         RPyItem(l_v98053, 1L) = l_v98054;
[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:42807:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  42807 |         RPyItem(l_v98153, 1L) = l_v98154;
[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 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  42808 |         RPyItem(l_v98153, 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:51002:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  51002 |         RPyItem(l_v100914, 1L) = l_v100915;
[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 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  51003 |         RPyItem(l_v100914, 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:52563:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  52563 |         RPyItem(l_v101408, 1L) = l_v101409;
[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:64487:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  64487 |         RPyItem(l_v105530, 1L) = l_v105531;
[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_v154221, 1L) = l_v154222;
[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_v154221, 2L) = (&pypy_g_rpy_string_893.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_v154221, 3L) = l_v154223;
[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_v154221, 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_v173955, 1L) = l_v173956;
[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_v173955, 2L) = (&pypy_g_rpy_string_1061.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_v174103, 1L) = l_v174104;
[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_v174103, 2L) = (&pypy_g_rpy_string_1061.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_v174262, 1L) = l_v174263;
[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_v174262, 2L) = (&pypy_g_rpy_string_1061.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_v174422, 1L) = l_v174423;
[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_v174422, 2L) = (&pypy_g_rpy_string_1061.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_v199783, 1L) = l_v199784;
[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_v199783, 2L) = (&pypy_g_rpy_string_1076.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_v200334, 1L) = l_v200335;
[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_v200334, 2L) = (&pypy_g_rpy_string_1076.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_v205987, 1L) = l_v205988;
[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_v205987, 2L) = (&pypy_g_rpy_string_1061.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_v205993, 1L) = l_v205994;
[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_v205993, 2L) = (&pypy_g_rpy_string_1061.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_v206309, 1L) = l_v206310;
[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_v206309, 2L) = (&pypy_g_rpy_string_1061.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_v208390, 1L) = l_v208391;
[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_v208390, 2L) = (&pypy_g_rpy_string_1086.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_v208390, 3L) = l_v208392;
[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_v208390, 4L) = (&pypy_g_rpy_string_1087.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_v208390, 5L) = l_v208393;
[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_v217446, 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_v217446, 2L) = l_v217448;
[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_v217455, 1L) = l_v217456;
[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_v217455, 2L) = (&pypy_g_rpy_string_1101.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_v217455, 3L) = l_v217457;
[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_v217455, 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_v217461, 1L) = l_v217462;
[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_v217461, 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_v217461, 3L) = l_v217463;
[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_v217461, 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_v217464, 1L) = l_v217465;
[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_v217464, 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_v217466, 1L) = l_v217467;
[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_v217466, 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_v217470, 1L) = l_v217471;
[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_v217470, 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_v218084, 1L) = (&pypy_g_rpy_string_1106.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_v218087, 1L) = l_v218088;
[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_v218094, 1L) = l_v218095;
[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_v218094, 2L) = l_v218096;
[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_v218094, 3L) = l_v218097;
[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_v218094, 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_v218112, 1L) = l_v218113;
[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_v218112, 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_v221951, 1L) = l_v221952;
[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_v221953, 1L) = l_v221954;
[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_v223693, 1L) = l_v223694;
[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_v223696, 1L) = l_v223697;
[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_v223699, 1L) = l_v223700;
[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_v223703, 1L) = l_v223704;
[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_v224022, 1L) = l_v224023;
[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_v224025, 1L) = l_v224026;
[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_v224028, 1L) = l_v224029;
[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_v224032, 1L) = l_v224033;
[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_v224036, 1L) = l_v224037;
[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_v226826, 1L) = l_v226827;
[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_v226919, 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_v226919, 2L) = l_v226921;
[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_v226919, 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_v226919, 4L) = l_v226922;
[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_v226919, 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_v226919, 6L) = l_v226923;
[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_v227138, 1L) = l_v227139;
[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_v227488, 1L) = l_v227489;
[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_v227488, 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_v227488, 3L) = l_v227490;
[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_v227488, 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_v227488, 5L) = l_v227491;
[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_v227488, 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_v228140, 1L) = l_v228141;
[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_v228140, 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_v228140, 3L) = l_v228142;
[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_v228140, 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_v228328, 1L) = l_v228329;
[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_v228328, 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_v229775, 1L) = l_v229776;
[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_v229775, 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_v230097, 1L) = l_v230098;
[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_v230097, 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_v233715, 1L) = l_v233716;
[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_v233715, 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_v233715, 3L) = l_v233717;
[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_v233715, 4L) = (&pypy_g_rpy_string_1087.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_v233715, 5L) = l_v233718;
[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:24062:20: warning: array index 1 is past the end of the array (that has type 'Signed[1]' (aka 'long[1]')) [-Warray-bounds]
[platform:WARNING]  24062 |                                 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:24504:20: warning: array index 1 is past the end of the array (that has type 'Signed[1]' (aka 'long[1]')) [-Warray-bounds]
[platform:WARNING]  24504 |                                 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_v245032, 1L) = l_v245033;
[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_v245157, 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:1587:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  1587 |         RPyItem(l_v245267, 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:2640:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  2640 |         RPyItem(l_v245564, 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:1547:2: warning: array index 1 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  1547 |         RPyItem(l_v251047, 1L) = l_v251048;
[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:1548:2: warning: array index 2 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  1548 |         RPyItem(l_v251047, 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:1565:2: warning: array index 3 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  1565 |         RPyItem(l_v251047, 3L) = l_v251049;
[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:1566:2: warning: array index 4 is past the end of the array (that has type 'struct pypy_rpy_string0 *[1]') [-Warray-bounds]
[platform:WARNING]  1566 |         RPyItem(l_v251047, 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_v257512);
[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_v257512);
[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 #781*
test: jit/backend/aarch64/test/test_zrpy_vmprof.py::TestZVMprof::()::test_vmprof