[PATCH] D99092: [XCore][Test] XFAIL tests requiring 8-byte stack alignment.
Nigel Perks via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 22 10:26:10 PDT 2021
nigelp-xmos created this revision.
nigelp-xmos requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
XCore default subtarget does not support 8-byte stack alignment. These failures
can be seen on builder clang-xcore-ubuntu-20-x64 on staging buildbot.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D99092
Files:
llvm/test/CodeGen/Generic/2008-01-25-dag-combine-mul.ll
llvm/test/CodeGen/Generic/inline-asm-mem-clobber.ll
llvm/test/DebugInfo/Generic/2010-05-03-OriginDIE.ll
Index: llvm/test/DebugInfo/Generic/2010-05-03-OriginDIE.ll
===================================================================
--- llvm/test/DebugInfo/Generic/2010-05-03-OriginDIE.ll
+++ llvm/test/DebugInfo/Generic/2010-05-03-OriginDIE.ll
@@ -2,6 +2,9 @@
;RUN: llc < %s -o /dev/null
;Radar 7937109
+;XCore default subtarget does not support 8-byte alignment on stack.
+;XFAIL: xcore
+
%struct.anon = type { i64, i32, i32, i32, [1 x i32] }
%struct.gpm_t = type { i32, i8*, [16 x i8], i32, i64, i64, i64, i64, i64, i64, i32, i16, i16, [8 x %struct.gpmr_t] }
%struct.gpmr_t = type { [48 x i8], [48 x i8], [16 x i8], i64, i64, i64, i64, i16 }
Index: llvm/test/CodeGen/Generic/inline-asm-mem-clobber.ll
===================================================================
--- llvm/test/CodeGen/Generic/inline-asm-mem-clobber.ll
+++ llvm/test/CodeGen/Generic/inline-asm-mem-clobber.ll
@@ -1,5 +1,8 @@
; RUN: llc -O2 -no-integrated-as < %s | FileCheck %s
+; XCore default subtarget does not support 8-byte alignment on stack.
+; XFAIL: xcore
+
@G = common global i32 0, align 4
define i32 @foo(i8* %p) nounwind uwtable {
Index: llvm/test/CodeGen/Generic/2008-01-25-dag-combine-mul.ll
===================================================================
--- llvm/test/CodeGen/Generic/2008-01-25-dag-combine-mul.ll
+++ llvm/test/CodeGen/Generic/2008-01-25-dag-combine-mul.ll
@@ -1,6 +1,9 @@
; RUN: llc < %s
; rdar://5707064
+; XCore default subtarget does not support 8-byte alignment on stack.
+; XFAIL: xcore
+
define i32 @f(i16* %pc) {
entry:
%acc = alloca i64, align 8 ; <i64*> [#uses=4]
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D99092.332355.patch
Type: text/x-patch
Size: 1604 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210322/a870eb77/attachment.bin>
More information about the llvm-commits
mailing list