blob: 217bdb92c6f6852c50c42ce192127ca73a95f67e [file] [log] [blame]
Mehdi Amini557c20a2016-03-13 21:05:23 +00001// RUN: %clang_cc1 -triple mips-unknown-linux-gnu -S -emit-llvm -o - %s | FileCheck -check-prefix=O32 %s
2// RUN: %clang_cc1 -triple mipsel-unknown-linux-gnu -S -emit-llvm -o - %s | FileCheck -check-prefix=O32 %s
3// RUN: %clang_cc1 -triple mips64-unknown-linux-gnu -S -emit-llvm -o - %s -target-abi n32 | FileCheck -check-prefix=N32 %s
4// RUN: %clang_cc1 -triple mips64el-unknown-linux-gnu -S -emit-llvm -o - %s -target-abi n32 | FileCheck -check-prefix=N32 %s
5// RUN: %clang_cc1 -triple mips64-unknown-linux-gnu -S -emit-llvm -o - %s | FileCheck -check-prefix=N64 %s
6// RUN: %clang_cc1 -triple mips64el-unknown-linux-gnu -S -emit-llvm -o - %s | FileCheck -check-prefix=N64 %s
Daniel Sandersed39f582014-09-04 13:28:14 +00007
8// O32: define void @fn28(%struct.T2* noalias sret %agg.result, i8 signext %arg0)
9// N32: define void @fn28(i8 signext %arg0)
10// N64: define void @fn28(i8 signext %arg0)
11
12typedef struct T2 { } T2;
13T2 T2_retval;
14T2 fn28(char arg0) {
15 return T2_retval;
16}