1 2 3 4 5 6 7 8 9 10 11 12
; RUN: llc < %s -mtriple=avr | FileCheck %s ; This test checks that we can successfully lower a store ; to an undefined pointer. ; CHECK-LABEL: foo define void @foo() { ; CHECK: st [[PTRREG:X|Y|Z]], r1 store i8 0, ptr undef, align 4 ret void }