blob: d1f8c2516a68bca86b4a6140fa41c966b9075808 [file] [log] [blame]
Chris Lattnerb82f5e72001-10-29 13:56:42 +00001implementation
2
3int "simpleAdd"(int %i0, int %j0)
4begin
5 %t1 = xor int %i0, %j0
6 %t2 = or int %i0, %j0
7 %t3 = and int %t1, %t2
8 ret int %t3
9end
10