[compiler-rt] d7307f4 - [ORC] Fix obj-imageinfo.S on X86 Darwin with Internal Shell (#169104)

via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 21 15:20:21 PST 2025


Author: Aiden Grossman
Date: 2025-11-21T15:20:16-08:00
New Revision: d7307f458cd3522470859ce0cee8d47d37a70670

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

LOG: [ORC] Fix obj-imageinfo.S on X86 Darwin with Internal Shell (#169104)

d464c99f595b69d3a34b361b6a935e803c60d308 fixes this test on AArch64
Darwin, but I did not realize that there was another X86 version of the
test. This patch also updates the X86 version of the test in a similar
manner.

Added: 
    

Modified: 
    compiler-rt/test/orc/TestCases/Darwin/x86-64/objc-imageinfo.S

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/orc/TestCases/Darwin/x86-64/objc-imageinfo.S b/compiler-rt/test/orc/TestCases/Darwin/x86-64/objc-imageinfo.S
index ae02ada4032fd..1cab9e28c51be 100644
--- a/compiler-rt/test/orc/TestCases/Darwin/x86-64/objc-imageinfo.S
+++ b/compiler-rt/test/orc/TestCases/Darwin/x86-64/objc-imageinfo.S
@@ -5,7 +5,9 @@
 
 // RUN: rm -rf %t
 // RUN: split-file %s %t
-// RUN: (cd %t; %clang -c *.S)
+// RUN: pushd %t
+// RUN: %clang -c *.S
+// RUN: popd
 
 // Check individual versions are loadable.
 


        


More information about the llvm-commits mailing list