aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Assembler/2003-11-11-ImplicitRename.llx8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Assembler/2003-11-11-ImplicitRename.llx b/test/Assembler/2003-11-11-ImplicitRename.llx
new file mode 100644
index 0000000000..0f858b417c
--- /dev/null
+++ b/test/Assembler/2003-11-11-ImplicitRename.llx
@@ -0,0 +1,8 @@
+; RUN: not llvm-as < %s > /dev/null
+
+void %test() {
+ %X = add int 0, 1
+ %X = add int 1, 2
+ ret void
+}
+