[llvm] f24c0ec - [LLVM] Fix back-end plugin test for AIX
Alexis Engelke via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 19 01:46:06 PST 2025
Author: Alexis Engelke
Date: 2025-12-19T09:45:30Z
New Revision: f24c0ec4124e76e072200377a40c80f974cfb51f
URL: https://github.com/llvm/llvm-project/commit/f24c0ec4124e76e072200377a40c80f974cfb51f
DIFF: https://github.com/llvm/llvm-project/commit/f24c0ec4124e76e072200377a40c80f974cfb51f.diff
LOG: [LLVM] Fix back-end plugin test for AIX
Added:
Modified:
llvm/test/Feature/codegen-plugin.ll
Removed:
################################################################################
diff --git a/llvm/test/Feature/codegen-plugin.ll b/llvm/test/Feature/codegen-plugin.ll
index 2c6a4d5ac9bb4..cd36ef14d8ec3 100644
--- a/llvm/test/Feature/codegen-plugin.ll
+++ b/llvm/test/Feature/codegen-plugin.ll
@@ -1,9 +1,11 @@
; REQUIRES: x86-registered-target
; RUN: llc < %s %loadnewpmbye | FileCheck %s --check-prefix=CHECK-ASM
; RUN: llc < %s %loadnewpmbye -last-words | FileCheck %s --check-prefix=CHECK-ACTIVE
-; RUN: not llc %s %loadnewpmbye -last-words -filetype=obj 2>&1 | FileCheck %s --check-prefix=CHECK-ERR
+; RUN: not llc < %s %loadnewpmbye -last-words -filetype=obj 2>&1 | FileCheck %s --check-prefix=CHECK-ERR
; REQUIRES: plugins, examples
; UNSUPPORTED: target={{.*windows.*}}
+; Plugins are currently broken on AIX, at least in the CI.
+; XFAIL: target={{.*}}-aix{{.*}}
; CHECK-ASM: somefunk:
; CHECK-ACTIVE: CodeGen Bye
; CHECK-ERR: error: last words unsupported for binary output
More information about the llvm-commits
mailing list