summaryrefslogtreecommitdiff
path: root/test/Transforms/IndMemRem/2009-01-24-Noalias.ll
blob: e6d67497e325113eccd51ce394b93cb3a090b9b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: opt %s -indmemrem -S | grep bounce | grep noalias

declare i8* @malloc(i32)

@g = external global i8*

define void @test() {
  %A = bitcast i8* (i32) * @malloc to i8*
  store i8* %A, i8** @g
  ret void
}