Reid Spencer | 69ccadd | 2006-12-02 04:23:10 +0000 | [diff] [blame] | 1 | ; RUN: llvm-upgrade < %s | llvm-as | llvm-dis | llvm-as |
Chris Lattner | 55d813a | 2005-02-09 17:42:24 +0000 | [diff] [blame] | 2 | |
3 | ; Ensure that the asm writer emits types before both operands of the | ||||
4 | ; store, even though they can be the same. | ||||
5 | |||||
6 | %RecTy = type %RecTy* | ||||
7 | implementation | ||||
8 | |||||
9 | void %foo() { | ||||
10 | %A = malloc %RecTy | ||||
11 | %B = malloc %RecTy | ||||
12 | store %RecTy %B, %RecTy %A ;; Both ops are the same | ||||
13 | ret void | ||||
14 | } |