brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.0 KiB · 86af5fc Raw
33 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py2; RUN: llc < %s -mtriple=x86_64-unknown-unknown | FileCheck %s3 4define void @multiple_stores_on_chain(ptr %A) {5; CHECK-LABEL: multiple_stores_on_chain:6; CHECK:       # %bb.0: # %entry7; CHECK-NEXT:    movabsq $844433520132096, %rax # imm = 0x30002000100008; CHECK-NEXT:    movq %rax, (%rdi)9; CHECK-NEXT:    movabsq $1970350607106052, %rax # imm = 0x700060005000410; CHECK-NEXT:    movq %rax, 8(%rdi)11; CHECK-NEXT:    retq12entry:13  %a1 = getelementptr inbounds i16, ptr %A, i64 114  %a2 = getelementptr inbounds i16, ptr %A, i64 215  %a3 = getelementptr inbounds i16, ptr %A, i64 316  %a4 = getelementptr inbounds i16, ptr %A, i64 417  %a5 = getelementptr inbounds i16, ptr %A, i64 518  %a6 = getelementptr inbounds i16, ptr %A, i64 619  %a7 = getelementptr inbounds i16, ptr %A, i64 720 21  store i16 0, ptr %A22  store i16 1, ptr %a123  store i16 2, ptr %a224  store i16 3, ptr %a325  store i16 4, ptr %a426  store i16 5, ptr %a527  store i16 6, ptr %a628  store i16 7, ptr %a729 30  ret void31}32 33