19 lines · plain
1; RUN: llc -mtriple=x86_64-unknown-unknown < %s | FileCheck %s2; Check assembly printing of odd constants.3 4; CHECK: bigCst:5; CHECK-NEXT: .quad 127139509992279046; CHECK-NEXT: .short 262207; CHECK-NEXT: .byte 08; CHECK-NEXT: .zero 59; CHECK-NEXT: .size bigCst, 1610 11@bigCst = internal constant i82 48367364232661544259942412 13define void @accessBig(ptr %storage) {14 %bigLoadedCst = load volatile i82, ptr @bigCst15 %tmp = add i82 %bigLoadedCst, 116 store i82 %tmp, ptr %storage17 ret void18}19