mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
84458323a2
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43083 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
378 B
LLVM
18 lines
378 B
LLVM
; 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(...)
|
|
|