-
Notifications
You must be signed in to change notification settings - Fork 12.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RegBankSelect] Assertion `N < NumContainedTys && "Element number out of range!"' #92062
Milestone
Comments
@llvm/issue-subscribers-backend-arm Author: DianQK (DianQK)
I tried the following code:
target triple = "arm64"
@<!-- -->p = external global { {}, { ptr } }
define void @<!-- -->foo() {
bb:
%i1 = load ptr, ptr @<!-- -->p, align 8
store ptr %i1, ptr null, align 8
ret void
} When using llc in LLVM 18, the following error occurs:
|
@llvm/issue-subscribers-backend-aarch64 Author: DianQK (DianQK)
I tried the following code:
target triple = "arm64"
@<!-- -->p = external global { {}, { ptr } }
define void @<!-- -->foo() {
bb:
%i1 = load ptr, ptr @<!-- -->p, align 8
store ptr %i1, ptr null, align 8
ret void
} When using llc in LLVM 18, the following error occurs:
|
It does not check for empty structs. |
Great. Will you fix it? |
tschuett
added a commit
to tschuett/llvm-project
that referenced
this issue
May 14, 2024
tschuett
added a commit
that referenced
this issue
May 14, 2024
github-project-automation
bot
moved this from Needs Triage
to Done
in LLVM Release Status
May 14, 2024
/cherry-pick d422e90 |
llvmbot
pushed a commit
to llvmbot/llvm-project
that referenced
this issue
May 14, 2024
…92072) Fixes llvm#92062 (cherry picked from commit d422e90)
/pull-request #92129 |
tstellar
pushed a commit
to llvmbot/llvm-project
that referenced
this issue
May 15, 2024
…92072) Fixes llvm#92062 (cherry picked from commit d422e90)
tstellar
pushed a commit
to llvmbot/llvm-project
that referenced
this issue
May 16, 2024
…92072) Fixes llvm#92062 (cherry picked from commit d422e90)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I tried the following code:
When using llc in LLVM 18, the following error occurs:
https://llvm.godbolt.org/z/a4h1abfKc
The text was updated successfully, but these errors were encountered: