|
From: <sv...@va...> - 2008-10-26 11:12:48
|
Author: sewardj
Date: 2008-10-26 11:06:44 +0000 (Sun, 26 Oct 2008)
New Revision: 8709
Log:
Fix references to undefined labels. Why was ld even prepared to link
this before?
Modified:
trunk/coregrind/m_trampoline.S
Modified: trunk/coregrind/m_trampoline.S
===================================================================
--- trunk/coregrind/m_trampoline.S 2008-10-25 16:30:38 UTC (rev 8708)
+++ trunk/coregrind/m_trampoline.S 2008-10-26 11:06:44 UTC (rev 8709)
@@ -162,7 +162,7 @@
syscall
ret
.LfnE2:
-.size VG_(amd64_linux_REDIR_FOR_vgettimeofday), .-LfnB2
+.size VG_(amd64_linux_REDIR_FOR_vgettimeofday), .-.LfnB2
.global VG_(amd64_linux_REDIR_FOR_vtime)
.type VG_(amd64_linux_REDIR_FOR_vtime), @function
@@ -172,7 +172,7 @@
syscall
ret
.LfnE3:
-.size VG_(amd64_linux_REDIR_FOR_vtime), .-LfnB3
+.size VG_(amd64_linux_REDIR_FOR_vtime), .-.LfnB3
/* A CIE for the above two functions, followed by their FDEs */
.section .eh_frame,"a",@progbits
|