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/string-literal-short-wstring.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/string-literal-short-wstring.c')
-rw-r--r-- | clang/test/CodeGen/string-literal-short-wstring.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/CodeGen/string-literal-short-wstring.c b/clang/test/CodeGen/string-literal-short-wstring.c index 89aa6f76ca4..01de6a4d802 100644 --- a/clang/test/CodeGen/string-literal-short-wstring.c +++ b/clang/test/CodeGen/string-literal-short-wstring.c @@ -2,6 +2,10 @@ // RUN: %clang_cc1 -x c++ -triple %ms_abi_triple -emit-llvm -fshort-wchar %s -o - | FileCheck %s --check-prefix=CHECK --check-prefix=MSABI // Runs in c++ mode so that wchar_t is available. +// XFAIL: hexagon +// Hexagon aligns arrays of size 8+ bytes to a 64-bit boundary, which fails +// the first check line with "align 1". + int main() { // This should convert to utf8. // CHECK: private unnamed_addr constant [10 x i8] c"\E1\84\A0\C8\A0\F4\82\80\B0\00", align 1 |