[llvm] 247dede - DebugInfo: Move missing-abstract-variable.ll test from Generic to X86

Tom Stellard via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 3 14:02:16 PDT 2022


Author: Tom Stellard
Date: 2022-11-03T14:02:06-07:00
New Revision: 247dedea4e031d3bff3a4fcf08cd259a13af279d

URL: https://github.com/llvm/llvm-project/commit/247dedea4e031d3bff3a4fcf08cd259a13af279d
DIFF: https://github.com/llvm/llvm-project/commit/247dedea4e031d3bff3a4fcf08cd259a13af279d.diff

LOG: DebugInfo: Move missing-abstract-variable.ll test from Generic to X86

This test is XFAIL'd on most arches, and seems too fragile to be run on non-X86.

Reviewed By: jmorse, probinson

Differential Revision: https://reviews.llvm.org/D109806

Added: 
    llvm/test/DebugInfo/X86/missing-abstract-variable.ll

Modified: 
    

Removed: 
    llvm/test/DebugInfo/Generic/missing-abstract-variable.ll


################################################################################
diff  --git a/llvm/test/DebugInfo/Generic/missing-abstract-variable.ll b/llvm/test/DebugInfo/X86/missing-abstract-variable.ll
similarity index 94%
rename from llvm/test/DebugInfo/Generic/missing-abstract-variable.ll
rename to llvm/test/DebugInfo/X86/missing-abstract-variable.ll
index 80e278e51194b..bf63cb41428a2 100644
--- a/llvm/test/DebugInfo/Generic/missing-abstract-variable.ll
+++ b/llvm/test/DebugInfo/X86/missing-abstract-variable.ll
@@ -1,10 +1,4 @@
-; RUN: %llc_dwarf -O0 -filetype=obj < %s | llvm-dwarfdump -debug-info - | FileCheck %s
-
-; The formal parameter 'b' for Function 'x' when inlined within 'a' is lost on
-; powerpc64 (and on x86_64 at at least -O2). Presumably this is a SelectionDAG
-; issue.
-; FIXME: arm64 is an alias for aarch64 on macs, apparently?
-; XFAIL: powerpc64, aarch64, arm64, hexagon, riscv, sparc, loongarch
+; RUN: %llc_dwarf -mtriple x86_64-gnu-linux -O0 -filetype=obj < %s | llvm-dwarfdump -debug-info - | FileCheck %s
 
 ; Build from the following source with clang -O2.
 


        


More information about the llvm-commits mailing list