llvm/llvm/test/CodeGen/NVPTX/brkpt.ll

; RUN: llc -o - -march=nvptx64 %s | FileCheck %s

; CHECK-LABEL: .func breakpoint
define void @breakpoint() {
  ; CHECK: brkpt;
  call void @llvm.debugtrap()
  ret void
}