1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/Feature/testlogical.ll
Chris Lattner ad4eb90651 Test bitwise operations
llvm-svn: 1025
2001-10-29 13:56:42 +00:00

11 lines
145 B
LLVM

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