[llvm] d771f54 - [ExecutionEngine] Allow JIT tests to run on PowerPC.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 18 15:15:37 PDT 2023


Author: Lang Hames
Date: 2023-04-18T15:15:31-07:00
New Revision: d771f54107c4889cde449d2bf5ba13d193017716

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

LOG: [ExecutionEngine] Allow JIT tests to run on PowerPC.

These tests passed on my ppc64le test machine. If they survive testing by the
buildbots then we can leave them enabled, and this will allow us to land the
new ppc64 JITLink backend (https://reviews.llvm.org/D148192).

Added: 
    

Modified: 
    llvm/test/ExecutionEngine/lit.local.cfg

Removed: 
    


################################################################################
diff  --git a/llvm/test/ExecutionEngine/lit.local.cfg b/llvm/test/ExecutionEngine/lit.local.cfg
index b00ef0dcbdf03..18a5d336b320d 100644
--- a/llvm/test/ExecutionEngine/lit.local.cfg
+++ b/llvm/test/ExecutionEngine/lit.local.cfg
@@ -1,4 +1,4 @@
-if config.root.native_target in ['Sparc', 'PowerPC', 'SystemZ', 'Hexagon', 'RISCV']:
+if config.root.native_target in ['Sparc', 'SystemZ', 'Hexagon', 'RISCV']:
     config.unsupported = True
 
 # ExecutionEngine tests are not expected to pass in a cross-compilation setup.


        


More information about the llvm-commits mailing list