2003-05-15-TypeProblem.ll 273 B

12345678910
  1. ; This one fails because the LLVM runtime is allowing two null pointers of
  2. ; the same type to be created!
  3. ; RUN: echo "%M = type { %N*} %N = type opaque" | llvm-as > %t.2.bc
  4. ; RUN: llvm-as < %s > %t.1.bc
  5. ; RUN: llvm-link %t.1.bc %t.2.bc
  6. %M = type { i32* }
  7. %N = type i32