1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00
llvm-mirror/test/Transforms/PruneEH/2008-06-02-Weak.ll
Eric Christopher a62270de2c Revert "Temporarily Revert "Add basic loop fusion pass.""
The reversion apparently deleted the test/Transforms directory.

Will be re-reverting again.

llvm-svn: 358552
2019-04-17 04:52:47 +00:00

21 lines
470 B
LLVM

; RUN: opt < %s -prune-eh -S | FileCheck %s
; RUN: opt < %s -passes='function-attrs,function(simplify-cfg)' -S | FileCheck %s
; We should not infer 'nounwind' for/from a weak function,
; since it can be overriden by throwing implementation.
;
; CHECK-LABEL: define weak void @f()
define weak void @f() {
entry:
ret void
}
; CHECK-LABEL: define void @g()
define void @g() {
entry:
call void @f()
ret void
}
; CHECK-NOT: {{^}}attributes #{{[0-9].*}} nounwind