diff options
-rw-r--r-- | llvm/test/FrontendC/misaligned-param.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/FrontendC/misaligned-param.c b/llvm/test/FrontendC/misaligned-param.c index 022dcaaa4af..f2c080390c9 100644 --- a/llvm/test/FrontendC/misaligned-param.c +++ b/llvm/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: x86,i386,i686,darwin +// XTARGET: x86_64-apple-darwin,i386-apple-darwin struct s { int x; long double y; }; long double foo(struct s x, int i, struct s y) { |