repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Factor out code that optimize loop terminating condition.
[llvm/msp430.git]
/
test
/
Transforms
/
IndMemRem
/
2009-01-24-Noalias.ll
blob
bc3d0bfe5e3f3ff6de5d347934e2bd4bf0c825cb
1
; RUN: llvm-as < %s | opt -indmemrem | llvm-dis | 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
}