aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/FrontendC/misaligned-param.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/FrontendC/misaligned-param.c b/test/FrontendC/misaligned-param.c
index 8118ce49cc..b4fcfe312f 100644
--- a/test/FrontendC/misaligned-param.c
+++ b/test/FrontendC/misaligned-param.c
@@ -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) {