mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
12 lines
411 B
LLVM
12 lines
411 B
LLVM
; RUN: bugpoint -load %llvmshlibdir/BugpointPasses%shlibext %s -output-prefix %t -bugpoint-crashfuncattr -silence-passes
|
|
; RUN: llvm-dis %t-reduced-simplified.bc -o - | FileCheck %s
|
|
; REQUIRES: plugins
|
|
|
|
; CHECK: f() #[[ATTRS:[0-9]+]]
|
|
define void @f() #0 {
|
|
ret void
|
|
}
|
|
|
|
; CHECK: attributes #[[ATTRS]] = { "bugpoint-crash"="sure" }
|
|
attributes #0 = { "bugpoint-crash"="sure" noreturn "frame-pointer"="non-leaf" }
|