mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
4572ce85b0
llvm-svn: 33296
16 lines
243 B
LLVM
16 lines
243 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | 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
|
|
|