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