brintos

brintos / llvm-project-archived public Read only

0
0
Text · 495 B · 6c9e250 Raw
15 lines · plain
1; RUN: llc < %s -verify-machineinstrs -mtriple=aarch64-none-linux-gnu -mcpu=cortex-a57 -mattr=+neon -fp-contract=fast -regalloc=pbqp -pbqp-coalescing | FileCheck %s2 3; CHECK-LABEL: test:4define i32 @test(i32 %acc, ptr nocapture readonly %c) {5entry:6  %0 = load i32, ptr %c, align 47; CHECK-NOT: mov	 w{{[0-9]*}}, w08  %add = add nsw i32 %0, %acc9  %arrayidx1 = getelementptr inbounds i32, ptr %c, i64 110  %1 = load i32, ptr %arrayidx1, align 411  %add2 = add nsw i32 %add, %112  ret i32 %add213}14 15