mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
16 lines
223 B
LLVM
16 lines
223 B
LLVM
|
; RUN: as < %s | opt -adce
|
||
|
|
||
|
implementation
|
||
|
|
||
|
int "main"(int %argc)
|
||
|
begin
|
||
|
br label %2
|
||
|
|
||
|
%retval = phi int [ %argc, %2 ] ; <int> [#uses=2]
|
||
|
%two = add int %retval, %retval ; <int> [#uses=1]
|
||
|
ret int %two
|
||
|
|
||
|
br label %1
|
||
|
end
|
||
|
|