blob: 513cf6f339b15ae80a0c1ed2566480f5f47d1f42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
; RUN: llvm-as <%s | opt -raiseallocs -stats -disable-output |& \
; RUN: not grep {Number of allocations raised}
define void @foo() {
entry:
%buffer = alloca i16*
%tmp = load i16** %buffer, align 8
invoke i32(...)* @free(i16* %tmp)
to label %invcont unwind label %unwind
invcont:
br label %finally
unwind:
br label %finally
finally:
ret void
}
declare i32 @free(...)
|