Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / AVR / store-undef.ll
blob63d938a5e5889400b6fd44b169f32d59853d5cc1
1 ; RUN: llc < %s -march=avr | FileCheck %s
3 ; This test checks that we can successfully lower a store
4 ; to an undefined pointer.
6 ; CHECK-LABEL: foo
7 define void @foo() {
9   ; CHECK: st [[PTRREG:X|Y|Z]], r1
10   store i8 0, ptr undef, align 4
11   ret void