]> granicus.if.org Git - clang/commitdiff
Remove duplicated file and directory.
authorRafael Espindola <rafael.espindola@gmail.com>
Tue, 18 Jun 2013 14:09:48 +0000 (14:09 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Tue, 18 Jun 2013 14:09:48 +0000 (14:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@184188 91177308-0d34-0410-b5e6-96231b3b80d8

CodeGen/x86_32-fpcc-struct-return.c [deleted file]

diff --git a/CodeGen/x86_32-fpcc-struct-return.c b/CodeGen/x86_32-fpcc-struct-return.c
deleted file mode 100644 (file)
index 6851102..0000000
+++ /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; }