Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / Hexagon / trap-crash.ll
blobe940d98b620c57d637a64c829d917d3d9d4bbc5d
1 ; RUN: llc -march=hexagon < %s | FileCheck %s
3 ; Generate code that is guaranteed to crash. At the moment, it's a
4 ; misaligned load.
5 ; CHECK: memd(##3134984174)
7 target triple = "hexagon"
9 ; Function Attrs: noreturn nounwind
10 define i32 @f0() #0 {
11 entry:
12   tail call void @llvm.trap()
13   unreachable
16 ; Function Attrs: cold noreturn nounwind
17 declare void @llvm.trap() #1
19 attributes #0 = { noreturn nounwind "target-cpu"="hexagonv60" }
20 attributes #1 = { cold noreturn nounwind }