blob: 29b9bab61f7ff8359cc16835c371125ca10f412d (
plain)
1
2
3
4
5
6
7
8
|
; RUN: not --crash llc -mtriple=riscv32 -mattr=+e < %s 2>&1 | FileCheck %s
; RUN: not --crash llc -mtriple=riscv64 -mattr=+e < %s 2>&1 | FileCheck %s
; CHECK: LLVM ERROR: Codegen not yet implemented for RVE
define void @nothing() nounwind {
ret void
}
|