repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git]
/
llvm
/
test
/
CodeGen
/
AVR
/
store-undef.ll
blob
4ea1a572a02d5c1b21ae00fe108dcb80eb546f08
1
; RUN: llc < %s -march=avr | FileCheck %s
2
3
; This test checks that we can successfully lower a store
4
; to an undefined pointer.
5
6
; CHECK-LABEL: foo
7
define void @foo() {
8
9
; CHECK: st [[PTRREG:X|Y|Z]], r1
10
store i8 0, i8* undef, align 4
11
ret void
12
}