[clang] 5b6710a - [CIR] Fix a dependency problem in ABI test (#222717)

via cfe-commits cfe-commits at lists.llvm.org
Thu Sep 10 13:02:31 PDT 2026


Author: Andy Kaylor
Date: 2026-09-10T13:02:27-07:00
New Revision: 5b6710a6cc6cca5f182a3fc4f12ce82fd2646c6e

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

LOG: [CIR] Fix a dependency problem in ABI test (#222717)

A recent change removed mlir-translate as a dependency of CIR and
changed tests to use cir-translate instead. One test was committed after
that change and missed the update.

Added: 
    

Modified: 
    clang/test/CIR/Transforms/abi-lowering/x86_64-struct-direct-offset.cir

Removed: 
    


################################################################################
diff  --git a/clang/test/CIR/Transforms/abi-lowering/x86_64-struct-direct-offset.cir b/clang/test/CIR/Transforms/abi-lowering/x86_64-struct-direct-offset.cir
index 585087886a09a..e0d450cb8b6a1 100644
--- a/clang/test/CIR/Transforms/abi-lowering/x86_64-struct-direct-offset.cir
+++ b/clang/test/CIR/Transforms/abi-lowering/x86_64-struct-direct-offset.cir
@@ -1,6 +1,6 @@
 // RUN: cir-opt %s -cir-call-conv-lowering=target=x86_64 | FileCheck %s --check-prefix=CIR
 // RUN: cir-opt %s -cir-call-conv-lowering=target=x86_64 -cir-to-llvm -o - 2>/dev/null \
-// RUN:   | mlir-translate -mlir-to-llvmir --allow-unregistered-dialect \
+// RUN:   | cir-translate -mlir-to-llvmir --allow-unregistered-dialect \
 // RUN:   | FileCheck %s --check-prefix=LLVM
 
 !u8i = !cir.int<u, 8>


        


More information about the cfe-commits mailing list