diff options
author | Krzysztof Parzyszek <kparzysz@codeaurora.org> | 2015-12-14 17:17:20 +0000 |
---|---|---|
committer | Krzysztof Parzyszek <kparzysz@codeaurora.org> | 2015-12-14 17:17:20 +0000 |
commit | 1065323eeca9301e1cfd59b8799979935c6f983d (patch) | |
tree | 3d0bd0361e321d02875d1aea61cef9804b2fe1d5 /clang/test/CodeGen/c-strings.c | |
parent | 8f5acb1bd1cdabe234a74588ef1bde6aca124ca7 (diff) | |
download | bcm5719-llvm-1065323eeca9301e1cfd59b8799979935c6f983d.tar.gz bcm5719-llvm-1065323eeca9301e1cfd59b8799979935c6f983d.zip |
[Hexagon] Xfail two tests that fail due to over-aligning arrays
llvm-svn: 255510
Diffstat (limited to 'clang/test/CodeGen/c-strings.c')
-rw-r--r-- | clang/test/CodeGen/c-strings.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/CodeGen/c-strings.c b/clang/test/CodeGen/c-strings.c index 974eeea8767..4e14d988a5d 100644 --- a/clang/test/CodeGen/c-strings.c +++ b/clang/test/CodeGen/c-strings.c @@ -15,6 +15,11 @@ // MSABI: @f4.x = internal global %struct.s { i8* getelementptr inbounds ([6 x i8], [6 x i8]* @"\01??_C@_05CJBACGMB@hello?$AA@", i32 0, i32 0) } // CHECK: @x = global [3 x i8] c"ola", align [[ALIGN]] +// XFAIL: hexagon +// Hexagon aligns arrays of size 8+ bytes to a 64-bit boundary, which +// fails the check for "@f3.x = ... align [ALIGN]", since ALIGN is derived +// from the alignment of a single i8, which is still 1. + #if defined(__s390x__) unsigned char align = 2; #else |