2
0

2009-02-15-BitcastAlias.ll 139 B

12345678910
  1. ; RUN: opt < %s -globalopt
  2. @g = global i32 0
  3. @a = alias bitcast (i32* @g to i8*)
  4. define void @f() {
  5. %tmp = load i8, i8* @a
  6. ret void
  7. }