From 1f4ef957488f01c76efdc07903730832d9d5ef64 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Tue, 18 Jun 2013 14:09:48 +0000 Subject: [PATCH] Remove duplicated file and directory. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@184188 91177308-0d34-0410-b5e6-96231b3b80d8 --- CodeGen/x86_32-fpcc-struct-return.c | 34 ----------------------------- 1 file changed, 34 deletions(-) delete mode 100644 CodeGen/x86_32-fpcc-struct-return.c diff --git a/CodeGen/x86_32-fpcc-struct-return.c b/CodeGen/x86_32-fpcc-struct-return.c deleted file mode 100644 index 68511024bb..0000000000 --- a/CodeGen/x86_32-fpcc-struct-return.c +++ /dev/null @@ -1,34 +0,0 @@ -// RUN: %clang_cc1 -triple i386-apple-darwin9 -emit-llvm -o - %s | FileCheck %s --check-prefix=REG -// RUN: %clang_cc1 -triple i386-apple-darwin9 -fpcc-struct-return -emit-llvm -o - %s | FileCheck %s --check-prefix=PCC -// RUN: %clang_cc1 -triple i386-apple-darwin9 -freg-struct-return -emit-llvm -o - %s | FileCheck %s --check-prefix=REG -// RUN: %clang_cc1 -triple i386-pc-linux-gnu -emit-llvm -o - %s | FileCheck %s --check-prefix=PCC -// RUN: %clang_cc1 -triple i386-pc-linux-gnu -fpcc-struct-return -emit-llvm -o - %s | FileCheck %s --check-prefix=PCC -// RUN: %clang_cc1 -triple i386-pc-linux-gnu -freg-struct-return -emit-llvm -o - %s | FileCheck %s --check-prefix=REG -// RUN: %clang_cc1 -triple i386-pc-win32 -emit-llvm -o - %s | FileCheck %s --check-prefix=REG -// RUN: %clang_cc1 -triple i386-pc-win32 -fpcc-struct-return -emit-llvm -o - %s | FileCheck %s --check-prefix=PCC -// RUN: %clang_cc1 -triple i386-pc-win32 -freg-struct-return -emit-llvm -o - %s | FileCheck %s --check-prefix=REG - -typedef struct { int a,b,c,d; } Big; -typedef struct { int i; } Small; -typedef struct { short s; } Short; -typedef struct { } ZeroSized; - -// CHECK: define void @returnBig -// CHECK: ret void -Big returnBig(Big x) { return x; } - -// CHECK-PCC: define void @returnSmall -// CHECK-PCC: ret void -// CHECK-REG: define i32 @returnSmall -// CHECK-REG: ret i32 -Small returnSmall(Small x) { return x; } - -// CHECK-PCC: define void @returnShort -// CHECK-PCC: ret void -// CHECK-REG: define i16 @returnShort -// CHECK-REG: ret i16 -Short returnShort(Short x) { return x; } - -// CHECK: define void @returnZero() -// CHECK: ret void -ZeroSized returnZero(ZeroSized x) { return x; } -- 2.40.0