0001-XFAIL-missing-abstract-variable.ll-test-on-ppc64le.patch 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. From 9320ffeda3915c8f7be744c983a3470a89107bd7 Mon Sep 17 00:00:00 2001
  2. From: Tom Stellard <tstellar@redhat.com>
  3. Date: Tue, 14 Sep 2021 20:21:20 -0700
  4. Subject: [PATCH] XFAIL missing-abstract-variable.ll test on ppc64le
  5. It's seems the strategy with this test is to XFAIL it on all
  6. architectures that it fails on. I wonder if we should be passing
  7. it a specific triple? Also, from what I can tell, this tests only
  8. runs when llvm is configured with LLVM_DEFAULT_TARGET_TRIPLE set
  9. to a non-empty value, which is why it may not fail in every build
  10. configuration.
  11. Differential Revision: https://reviews.llvm.org/D109806
  12. ---
  13. llvm/test/DebugInfo/Generic/missing-abstract-variable.ll | 2 +-
  14. 1 file changed, 1 insertion(+), 1 deletion(-)
  15. diff --git a/llvm/test/DebugInfo/Generic/missing-abstract-variable.ll b/llvm/test/DebugInfo/Generic/missing-abstract-variable.ll
  16. index bd0de60268b6..cc5d56b0c512 100644
  17. --- a/llvm/test/DebugInfo/Generic/missing-abstract-variable.ll
  18. +++ b/llvm/test/DebugInfo/Generic/missing-abstract-variable.ll
  19. @@ -4,7 +4,7 @@
  20. ; powerpc64 (and on x86_64 at at least -O2). Presumably this is a SelectionDAG
  21. ; issue.
  22. ; FIXME: arm64 is an alias for aarch64 on macs, apparently?
  23. -; XFAIL: powerpc64, aarch64, arm64, hexagon
  24. +; XFAIL: powerpc64, aarch64, arm64, hexagon, ppc64le
  25. ; Build from the following source with clang -O2.
  26. --
  27. 2.31.1