mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 00:32:55 +00:00
9 lines
186 B
LLVM
9 lines
186 B
LLVM
|
; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | FileCheck %s
|
||
|
|
||
|
define i64 @f1(i64 %a, i64 %b) {
|
||
|
; CHECK: f1:
|
||
|
; CHECK: subs r0, r0, r2
|
||
|
%tmp = sub i64 %a, %b
|
||
|
ret i64 %tmp
|
||
|
}
|