Bug 117637 - g++.dg/tree-ssa/loop-split-1.C has undefined behaviour
Summary: g++.dg/tree-ssa/loop-split-1.C has undefined behaviour
Status: UNCONFIRMED
Alias: None
Product: gcc
Classification: Unclassified
Component: testsuite (show other bugs)
Version: 15.0
: P3 normal
Target Milestone: ---
Assignee: Not yet assigned to anyone
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-11-17 10:24 UTC by Sam James
Modified: 2024-11-17 10:28 UTC (History)
1 user (show)

See Also:
Host:
Target:
Build:
Known to work:
Known to fail:
Last reconfirmed:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Sam James 2024-11-17 10:24:08 UTC
g++.dg/tree-ssa/loop-split-1.C has:
```
    std::vector<float> a, b, c;
    a.reserve(s);
    b.reserve(s);
    c.reserve(s);
[...]
```

I think it should be s/reserve/resize/? It still splits the loop with that change.