aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/IndMemRem/2009-01-24-Noalias.ll
blob: bc3d0bfe5e3f3ff6de5d347934e2bd4bf0c825cb (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: llvm-as < %s | opt -indmemrem | llvm-dis | 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
}