mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:43:36 +01:00
2826f5b278
with a temporary assertion and adjust the various test cases. llvm-svn: 197224
10 lines
221 B
LLVM
10 lines
221 B
LLVM
; RUN: llc < %s -march=thumb -mcpu=arm1156t2-s -mattr=+thumb2 | FileCheck %s
|
|
|
|
define i64 @f1(i64 %a, i64 %b) {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK: adds r0, r0, r2
|
|
; CHECK: adcs r1, r3
|
|
%tmp = add i64 %a, %b
|
|
ret i64 %tmp
|
|
}
|