mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
563ba88392
llvm-svn: 8558
16 lines
228 B
LLVM
16 lines
228 B
LLVM
; RUN: llvm-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
|
|
|