20 lines · plain
1; RUN: llc -mtriple=thumbv7-unknown-unknown -target-abi apcs < %s | FileCheck %s2; Check assembly printing of odd constants.3 4; CHECK: bigCst:5; CHECK-NEXT: .long 16945105926; CHECK-NEXT: .long 29601977; CHECK-NEXT: .short 262208; CHECK-NEXT: .byte 09; CHECK-NEXT: .zero 110; CHECK-NEXT: .size bigCst, 1211 12@bigCst = internal constant i82 48367364232661544259942413 14define void @accessBig(ptr %storage) {15 %bigLoadedCst = load volatile i82, ptr @bigCst16 %tmp = add i82 %bigLoadedCst, 117 store i82 %tmp, ptr %storage18 ret void19}20