From: Anders Carlsson Date: Wed, 27 Jan 2010 03:22:55 +0000 (+0000) Subject: Update xcode project. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bfc008d5970b5bff0fd3ec15ecbd5b46f56fd9a1;p=clang Update xcode project. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94654 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/x86_32-arguments.cpp b/test/CodeGenCXX/x86_32-arguments.cpp new file mode 100644 index 0000000000..d13c0e4888 --- /dev/null +++ b/test/CodeGenCXX/x86_32-arguments.cpp @@ -0,0 +1,24 @@ +// RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm -o - %s | FileCheck %s + +// Non-trivial dtors, should both be passed indirectly. +struct S { + ~S(); + int s; +}; + +// CHECK: define void @_Z1fv(%struct.S* noalias sret % +S f() { return S(); } +// CHECK: define void @_Z1f1S(%struct.S*) +void f(S) { } + +// Non-trivial dtors, should both be passed indirectly. +class C { + ~C(); + double c; +}; + +// CHECK: define void @_Z1gv(%class.C* noalias sret % +C g() { return C(); } + +// CHECK: define void @_Z1f1C(%class.C*) +void f(C) { }