Skip to content
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

[ExecutionEngine][test][RISCV] Don't mark RISCV as unsupported #124464

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
; LoongArch does not support mcjit.
; UNSUPPORTED: target=loongarch{{.*}}

; LLI.exe used to crash on Windows\X86 when certain single precession
; floating point intrinsics (defined as macros) are used.
; This unit test guards against the failure.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
; LoongArch does not support mcjit.
; UNSUPPORTED: target=loongarch{{.*}}

; RUN: %lli -jit-kind=mcjit %s > /dev/null
; RUN: %lli %s > /dev/null

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
; LoongArch does not support mcjit.
; UNSUPPORTED: target=loongarch{{.*}}

; RUN: %lli -jit-kind=mcjit %s > /dev/null
; RUN: %lli %s > /dev/null

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
; LoongArch does not support mcjit.
; UNSUPPORTED: target=loongarch{{.*}}

; RUN: %lli -jit-kind=mcjit %s > /dev/null
; RUN: %lli %s > /dev/null

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
; LoongArch does not support mcjit.
; UNSUPPORTED: target=loongarch{{.*}}

; RUN: %lli -jit-kind=mcjit %s > /dev/null
; RUN: %lli %s > /dev/null

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
; LoongArch does not support mcjit.
; UNSUPPORTED: target=loongarch{{.*}}

; RUN: %lli -jit-kind=mcjit %s > /dev/null
; RUN: %lli %s > /dev/null

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
; LoongArch does not support mcjit.
; UNSUPPORTED: target=loongarch{{.*}}

; RUN: %lli -jit-kind=mcjit %s > /dev/null
; RUN: %lli %s > /dev/null

Expand Down
2 changes: 1 addition & 1 deletion llvm/test/ExecutionEngine/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
if config.root.native_target in ['Sparc', 'SystemZ', 'Hexagon', 'RISCV']:
if config.root.native_target in ['Sparc', 'SystemZ', 'Hexagon']:
config.unsupported = True

# ExecutionEngine tests are not expected to pass in a cross-compilation setup.
Expand Down
Loading