1
0
mirror of https://github.com/RPCS3/llvm.git synced 2024-12-14 07:31:53 +00:00
llvm/test/Feature/testlogical.ll

11 lines
145 B
LLVM
Raw Normal View History

implementation
int "simpleAdd"(int %i0, int %j0)
begin
%t1 = xor int %i0, %j0
%t2 = or int %i0, %j0
%t3 = and int %t1, %t2
ret int %t3
end