blob: 589e85ef9dd1f1960629b2488b1059f0c24dd50c [file] [log] [blame]
Rafael Espindolafc3fc0c2012-10-09 20:46:28 +00001// RUN: %clang -target mipsel-unknown-linux -O3 -S -o - -emit-llvm %s | FileCheck %s -check-prefix=O32
2// RUN: %clang -target mips64el-unknown-linux -O3 -S -mabi=n64 -o - -emit-llvm %s | FileCheck %s -check-prefix=N64
Akira Hatanaka8ab86cb2012-05-11 21:56:58 +00003
4typedef struct {
5 float f[3];
6} S0;
7
8extern void foo2(S0);
9
Stephen Lin43622612013-08-15 06:47:53 +000010// O32-LABEL: define void @foo1(i32 %a0.coerce0, i32 %a0.coerce1, i32 %a0.coerce2)
11// N64-LABEL: define void @foo1(i64 %a0.coerce0, i32 %a0.coerce1)
Akira Hatanaka8ab86cb2012-05-11 21:56:58 +000012
13void foo1(S0 a0) {
14 foo2(a0);
15}