aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/test2darray.ll14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/test2darray.ll b/test/test2darray.ll
index 123d26c136..7f79e65e78 100644
--- a/test/test2darray.ll
+++ b/test/test2darray.ll
@@ -1,3 +1,6 @@
+%somestr = [sbyte] c"hello world"
+%somestr = [11x sbyte] c"hello world"
+
implementation
[[2 x int]] "test function"(int %i0, int %j0)
@@ -8,3 +11,14 @@ begin
ret [[2x int]] %array
end
+
+[sbyte] "other func"(int, double)
+begin
+ ret [sbyte] %somestr
+end
+
+[sbyte] "again"(float)
+begin
+ %cast = cast [11x sbyte] %somestr to [sbyte]
+ ret [sbyte] %cast
+end