diff options
author | dim <dim@FreeBSD.org> | 2015-01-15 22:31:35 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2015-01-15 22:31:35 +0000 |
commit | c696171ff15f0ee60dea4abfd99a135473c95656 (patch) | |
tree | 6c840e234e0c97d0adf033bb41f667a5f5b528b6 /test/CodeGen/mips-zero-sized-struct.c | |
parent | 173a4f43a911175643bda81ee675e8d9269056ea (diff) | |
download | FreeBSD-src-c696171ff15f0ee60dea4abfd99a135473c95656.zip FreeBSD-src-c696171ff15f0ee60dea4abfd99a135473c95656.tar.gz |
Vendor import of clang RELEASE_351/final tag r225668 (effectively, 3.5.1 release):
https://llvm.org/svn/llvm-project/cfe/tags/RELEASE_351/final@225668
Diffstat (limited to 'test/CodeGen/mips-zero-sized-struct.c')
-rw-r--r-- | test/CodeGen/mips-zero-sized-struct.c | 16 |
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 0000000..afff3b4 --- /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; +} |