Changeset 41126 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- May 2, 2012 8:10:38 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 77734
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPLibTracerA.asm
r41125 r41126 29 29 ;******************************************************************************* 30 30 %include "iprt/asmdefs.mac" 31 32 ; This should go into asmdefs.mac 33 %ifdef PIC 34 %ifdef ASM_FORMAT_ELF 35 %define RT_ASM_USE_GOT 36 %define RT_ASM_USE_PLT 37 %endif 38 %endif 31 39 32 40 … … 202 210 %else 203 211 mov xSI, xSP 204 %ifdef RT_OS_DARWIN 205 call NAME(suplibTracerFireProbe) 206 %elifdef PIC 212 %ifdef RT_ASM_USE_PLT 207 213 call [rel NAME(suplibTracerFireProbe) wrt ..plt] 208 214 %else … … 251 257 push xDX 252 258 push xCX 259 %ifdef RT_ASM_USE_PLT 260 call NAME(suplibTracerFireProbe) wrt ..plt 261 %else 253 262 call NAME(suplibTracerFireProbe) 263 %endif 254 264 %else 255 265 %error "Arch not supported (or correctly defined)."
Note:
See TracChangeset
for help on using the changeset viewer.