mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 02:36:06 +00:00
10 lines
214 B
LLVM
10 lines
214 B
LLVM
|
;; RUN: llc -mtriple=hexagon-unknown-elf -filetype=obj %s -o - \
|
||
|
;; RUN: | llvm-objdump -s - | FileCheck %s
|
||
|
|
||
|
define i32 @foo (i32 %a, i32 %b)
|
||
|
{
|
||
|
%1 = add i32 %a, %b
|
||
|
ret i32 %1
|
||
|
}
|
||
|
|
||
|
; CHECK: 0000 004100f3 00c09f52
|