]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - opencl/llvm.git/blob - test/CodeGen/Thumb2/thumb2-add6.ll
Mass update to CodeGen tests to use CHECK-LABEL for labels corresponding to function...
[opencl/llvm.git] / test / CodeGen / Thumb2 / thumb2-add6.ll
1 ; RUN: llc < %s -march=thumb -mattr=+thumb2 | FileCheck %s
3 define i64 @f1(i64 %a, i64 %b) {
4 ; CHECK-LABEL: f1:
5 ; CHECK: adds r0, r0, r2
6 ; CHECK: adcs r1, r3
7     %tmp = add i64 %a, %b
8     ret i64 %tmp
9 }