Home | History | Annotate | Download | only in CodeGen
      1 // 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
      7 
      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 
     12 typedef struct T2 {  } T2;
     13 T2 T2_retval;
     14 T2 fn28(char arg0) {
     15   return T2_retval;
     16 }
     17