aboutsummaryrefslogtreecommitdiffstats
path: root/test/Verifier/recursive-type-3.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Verifier/recursive-type-3.ll')
-rw-r--r--test/Verifier/recursive-type-3.ll11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/Verifier/recursive-type-3.ll b/test/Verifier/recursive-type-3.ll
new file mode 100644
index 0000000..8968fb5
--- /dev/null
+++ b/test/Verifier/recursive-type-3.ll
@@ -0,0 +1,11 @@
+; RUN: llvm-as %s -o /dev/null 2>&1
+
+%rt2 = type { i32, { i8, %rt2*, i8 }, i32 }
+
+define i32 @main() nounwind {
+entry:
+ ; Check that linked-list-style recursive types where the recursion is through
+ ; a pointer of the type is valid for an alloca.
+ %0 = alloca %rt2
+ ret i32 0
+}