[cfe-commits] r139457 - /cfe/trunk/test/CodeGen/palignr.c
Richard Trieu
rtrieu at google.com
Fri Sep 9 18:56:32 PDT 2011
Author: rtrieu
Date: Fri Sep 9 20:56:32 2011
New Revision: 139457
URL: http://llvm.org/viewvc/llvm-project?rev=139457&view=rev
Log:
Revision 139454 fixed a broken assert in LLVM, which causes
a test failure in CodeGen/palignr.c, which has been marked
XFAIL for the time being. A bug has been filed at PR10901
for this issue.
Modified:
cfe/trunk/test/CodeGen/palignr.c
Modified: cfe/trunk/test/CodeGen/palignr.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/palignr.c?rev=139457&r1=139456&r2=139457&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/palignr.c (original)
+++ cfe/trunk/test/CodeGen/palignr.c Fri Sep 9 20:56:32 2011
@@ -1,5 +1,6 @@
// REQUIRES: x86-registered-target
// RUN: %clang_cc1 %s -triple=i686-apple-darwin -target-feature +ssse3 -O1 -S -o - | FileCheck %s
+// XFAIL: *
#define _mm_alignr_epi8(a, b, n) (__builtin_ia32_palignr128((a), (b), (n)))
typedef __attribute__((vector_size(16))) int int4;
More information about the cfe-commits
mailing list