[llvm-commits] [llvm] r112748 - /llvm/trunk/test/FrontendC/misaligned-param.c
Dale Johannesen
dalej at apple.com
Wed Sep 1 14:57:20 PDT 2010
Author: johannes
Date: Wed Sep 1 16:57:20 2010
New Revision: 112748
URL: http://llvm.org/viewvc/llvm-project?rev=112748&view=rev
Log:
Apparently only Darwin passes long double misaligned. Compensate.
Modified:
llvm/trunk/test/FrontendC/misaligned-param.c
Modified: llvm/trunk/test/FrontendC/misaligned-param.c
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC/misaligned-param.c?rev=112748&r1=112747&r2=112748&view=diff
==============================================================================
--- llvm/trunk/test/FrontendC/misaligned-param.c (original)
+++ llvm/trunk/test/FrontendC/misaligned-param.c Wed Sep 1 16:57:20 2010
@@ -1,7 +1,7 @@
// RUN: %llvmgcc %s -m32 -S -o - | FileCheck %s
// Misaligned parameter must be memcpy'd to correctly aligned temporary.
// XFAIL: *
-// XTARGET: i386,i686,x86_64
+// XTARGET: i386-apple-darwin,i686-apple-darwin,x86_64-apple-darwin
struct s { int x; long double y; };
long double foo(struct s x, int i, struct s y) {
More information about the llvm-commits
mailing list