summaryrefslogtreecommitdiffstats
path: root/test/Assembler/2005-02-09-AsmWriterStoreBug.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Assembler/2005-02-09-AsmWriterStoreBug.ll')
-rw-r--r--test/Assembler/2005-02-09-AsmWriterStoreBug.ll14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/Assembler/2005-02-09-AsmWriterStoreBug.ll b/test/Assembler/2005-02-09-AsmWriterStoreBug.ll
new file mode 100644
index 0000000..4ec1796
--- /dev/null
+++ b/test/Assembler/2005-02-09-AsmWriterStoreBug.ll
@@ -0,0 +1,14 @@
+; RUN: llvm-as < %s | llvm-dis | llvm-as
+
+; Ensure that the asm writer emits types before both operands of the
+; store, even though they can be the same.
+
+%RecTy = type %RecTy*
+
+define void @foo() {
+ %A = malloc %RecTy ; <%RecTy> [#uses=1]
+ %B = malloc %RecTy ; <%RecTy> [#uses=1]
+ store %RecTy %B, %RecTy %A
+ ret void
+}
+