-
-
Notifications
You must be signed in to change notification settings - Fork 609
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix Issue 17215 - ICE(cgcod.c:findreg) with SIMD and -O -inline
- caused by assigning 2*REGSIZE XMM vectors partially - only triggers since SROA sees this 8 bytes access
- Loading branch information
1 parent
0f4ce2f
commit 46d1948
Showing
2 changed files
with
10 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| // REQUIRED_ARGS: -O | ||
| version (X86_64): | ||
| alias vec = __vector(int[4]); | ||
|
|
||
| vec binop(vec a) | ||
| { | ||
| vec b = a; | ||
| return b; | ||
| } |