[llvm] r367767 - [JITLink] Fix an overly-wide read in the MachO/x86-64 test case.
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Sat Aug 3 15:38:32 PDT 2019
Author: lhames
Date: Sat Aug 3 15:38:31 2019
New Revision: 367767
URL: http://llvm.org/viewvc/llvm-project?rev=367767&view=rev
Log:
[JITLink] Fix an overly-wide read in the MachO/x86-64 test case.
This should fix the build failures on some of the 32-bit bots.
Modified:
llvm/trunk/test/ExecutionEngine/JITLink/X86/MachO_x86-64_relocations.s
Modified: llvm/trunk/test/ExecutionEngine/JITLink/X86/MachO_x86-64_relocations.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ExecutionEngine/JITLink/X86/MachO_x86-64_relocations.s?rev=367767&r1=367766&r2=367767&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/JITLink/X86/MachO_x86-64_relocations.s (original)
+++ llvm/trunk/test/ExecutionEngine/JITLink/X86/MachO_x86-64_relocations.s Sat Aug 3 15:38:31 2019
@@ -166,7 +166,7 @@ named_func_addr_quad:
# Check X86_64_RELOC_UNSIGNED / long / extern handling by putting the address of
# an external function (defined to reside in the low 4Gb) into a long symbol.
#
-# jitlink-check: *{8}named_func_addr_long = external_func
+# jitlink-check: *{4}named_func_addr_long = external_func
.globl named_func_addr_long
.p2align 2
named_func_addr_long:
More information about the llvm-commits
mailing list