blob: 3e7f5e44f191e6f1a3ecc6a83beb8f52dcabbe45 [file] [log] [blame]
Chris Lattner55d813a2005-02-09 17:42:24 +00001; RUN: llvm-as < %s | llvm-dis | llvm-as
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*
7implementation
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}