[llvm] c8b7c73 - Add AIX to the test macro-same-context XFAIL list

David Tenty via llvm-commits llvm-commits at lists.llvm.org
Mon May 25 07:19:52 PDT 2020


Author: Shuhong Liu
Date: 2020-05-25T10:19:45-04:00
New Revision: c8b7c73c57f0c835f036aaa00a4970fc91d40020

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

LOG: Add AIX to the test macro-same-context XFAIL list

Summary: Since the integrated assembly parser was not implemented yet for AIX and macro is not part of the native assembly dialect on AIX, the test macro-same-context is expected to fail for AIX; hence added AIX to XFAIL list.

Reviewers: hubert.reinterpretcast, daltenty, jasonliu

Reviewed By: daltenty

Subscribers: jasonliu, llvm-commits

Tags: #llvm

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

Added: 
    

Modified: 
    llvm/test/MC/AsmParser/macro-same-context.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/MC/AsmParser/macro-same-context.ll b/llvm/test/MC/AsmParser/macro-same-context.ll
index fac30e44193f..0acc19524208 100644
--- a/llvm/test/MC/AsmParser/macro-same-context.ll
+++ b/llvm/test/MC/AsmParser/macro-same-context.ll
@@ -2,6 +2,9 @@
 ;; thus a definition is available to the whole file. PR36110
 ; RUN: not llc < %s 2>&1 | FileCheck %s
 ; REQUIRES: default_triple
+;; This test is expected to fail on AIX,
+;; since the integrated assembly parser was not implemented yet for AIX.
+; XFAIL: aix
 
 define void @test() {
   call void asm sideeffect ".macro FOO\0A.endm", "~{dirflag},~{fpsr},~{flags}"() #1


        


More information about the llvm-commits mailing list