6 lines
82 B
LLVM
6 lines
82 B
LLVM
|
define i32 @add(i32 %x, i32 %y) {
|
||
|
entry:
|
||
|
%sum = add i32 %x, %y
|
||
|
ret i32 %sum
|
||
|
}
|