blob: f2e186d02445478be23c78de0a2865b78d293bf9 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | 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}