Initial checkin
[oota-llvm.git] / test / Feature / testlogical.ll
1 implementation
2
3 int "simpleAdd"(int %i0, int %j0)
4 begin
5         %t1 = xor int %i0, %j0
6         %t2 = or int %i0, %j0
7         %t3 = and int %t1, %t2
8         ret int %t3
9 end
10