blob: 97452b4557ec761e0481d35deb0674271fd8f207 [file] [log] [blame]
; RUN: llvm-as %s -o - | llvm-dis > %t1.ll
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll
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