Test should pass on non-Darwin x86.
authorDale Johannesen <dalej@apple.com>
Fri, 20 Aug 2010 21:18:55 +0000 (21:18 +0000)
committerDale Johannesen <dalej@apple.com>
Fri, 20 Aug 2010 21:18:55 +0000 (21:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111678 91177308-0d34-0410-b5e6-96231b3b80d8

test/FrontendC/misaligned-param.c

index f2c080390c9a5fa3ca96077897c6ed16aed34c15..8118ce49ccd32f94a79be8b22a4b4dca9befceb1 100644 (file)
@@ -1,7 +1,7 @@
 // RUN: %llvmgcc %s -m32 -S -o - | FileCheck %s
 // Misaligned parameter must be memcpy'd to correctly aligned temporary.
 // XFAIL: *
-// XTARGET: x86_64-apple-darwin,i386-apple-darwin
+// XTARGET: i386,i686,x86_64
 
 struct s { int x; long double y; };
 long double foo(struct s x, int i, struct s y) {