brintos

brintos / llvm-project-archived public Read only

0
0
Text · 253 B · a7a4e8c Raw
13 lines · plain
1; RUN: llc < %s -mtriple=avr | FileCheck %s2 3; This test checks that we can successfully lower a store4; to an undefined pointer.5 6; CHECK-LABEL: foo7define void @foo() {8 9  ; CHECK: st [[PTRREG:X|Y|Z]], r110  store i8 0, ptr undef, align 411  ret void12}13