mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
24f7263412
It's useful for a debugger to be able to distinguish an @llvm.debugtrap from a (noreturn) @llvm.trap, so this extends the existing Windows behaviour to other platforms.
17 lines
589 B
LLVM
17 lines
589 B
LLVM
; RUN: llc -mtriple=aarch64-windows %s -o -| FileCheck %s
|
|
; RUN: llc -mtriple=aarch64-windows -fast-isel %s -o - | FileCheck %s
|
|
; RUN: llc -mtriple=aarch64-windows -global-isel %s -o - | FileCheck %s
|
|
; RUN: llc -mtriple=aarch64-linux-gnu %s -o -| FileCheck %s
|
|
; RUN: llc -mtriple=arm64-apple-ios -global-isel %s -o - | FileCheck %s
|
|
; RUN: llc -mtriple=arm64-apple-macosx -fast-isel %s -o - | FileCheck %s
|
|
|
|
; CHECK-LABEL: test1:
|
|
; CHECK: brk #0xf000
|
|
define void @test1() noreturn nounwind {
|
|
entry:
|
|
tail call void @llvm.debugtrap( )
|
|
ret void
|
|
}
|
|
|
|
declare void @llvm.debugtrap() nounwind
|