repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
[llvm/avr.git]
/
test
/
Transforms
/
IndMemRem
/
2009-01-24-Noalias.ll
blob
b6d98031b7328a9a0c96c1a6bdbcfa48036bc412
1
; RUN: opt < %s -indmemrem -S | grep bounce | grep noalias
2
3
declare i8* @malloc(i32)
4
5
@g = external global i8*
6
7
define void @test() {
8
%A = bitcast i8* (i32) * @malloc to i8*
9
store i8* %A, i8** @g
10
ret void
11
}