summaryrefslogtreecommitdiff
path: root/test/CodeGen/mips-zero-sized-struct.c
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2015-01-15 22:31:35 +0000
committerDimitry Andric <dim@FreeBSD.org>2015-01-15 22:31:35 +0000
commit30d791273d07fac9c0c1641a0731191bca6e8606 (patch)
tree6c840e234e0c97d0adf033bb41f667a5f5b528b6 /test/CodeGen/mips-zero-sized-struct.c
parent9f4dbff6669c8037f3b036bcf580d14f1a4f12a5 (diff)
Notes
Diffstat (limited to 'test/CodeGen/mips-zero-sized-struct.c')
-rw-r--r--test/CodeGen/mips-zero-sized-struct.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/CodeGen/mips-zero-sized-struct.c b/test/CodeGen/mips-zero-sized-struct.c
new file mode 100644
index 000000000000..afff3b41d833
--- /dev/null
+++ b/test/CodeGen/mips-zero-sized-struct.c
@@ -0,0 +1,16 @@
+// RUN: %clang -target mips-unknown-linux-gnu -S -emit-llvm -o - %s | FileCheck -check-prefix=O32 %s
+// RUN: %clang -target mipsel-unknown-linux-gnu -S -emit-llvm -o - %s | FileCheck -check-prefix=O32 %s
+// RUN: %clang -target mips64-unknown-linux-gnu -S -emit-llvm -o - %s -mabi=n32 | FileCheck -check-prefix=N32 %s
+// RUN: %clang -target mips64el-unknown-linux-gnu -S -emit-llvm -o - %s -mabi=n32 | FileCheck -check-prefix=N32 %s
+// RUN: %clang -target mips64-unknown-linux-gnu -S -emit-llvm -o - %s | FileCheck -check-prefix=N64 %s
+// RUN: %clang -target mips64el-unknown-linux-gnu -S -emit-llvm -o - %s | FileCheck -check-prefix=N64 %s
+
+// O32: define void @fn28(%struct.T2* noalias sret %agg.result, i8 signext %arg0)
+// N32: define void @fn28(i8 signext %arg0)
+// N64: define void @fn28(i8 signext %arg0)
+
+typedef struct T2 { } T2;
+T2 T2_retval;
+T2 fn28(char arg0) {
+ return T2_retval;
+}