VirtualBox

Changeset 100753 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
Jul 31, 2023 1:26:23 PM (17 months ago)
Author:
vboxsync
Message:

VMM/IEM: Build fix. bugref:10369

Location:
trunk/src/VBox/VMM
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/IEMAllInstPython.py

    r100747 r100753  
    18951895    def renderCode(self, cchIndent = 0):
    18961896        cchIndent += self.cchIndent;
    1897         sRet = ' ' * cchIndent + self.asParams[0] + '(' + ','.join(self.asParams[1:]) + ');';
     1897        sRet = ' ' * cchIndent + self.asParams[0] + '(' + ', '.join(self.asParams[1:]) + ');';
    18981898        if self.fDecode:
    18991899            sRet += ' // C++ decode\n';
  • trunk/src/VBox/VMM/include/IEMInternal.h

    r100752 r100753  
    49714971/** @todo FNIEMTHREADEDFUNC and friends may need more work... */
    49724972#if defined(__GNUC__) && !defined(IEM_WITH_THROW_CATCH)
    4973 typedef VBOXSTRICTRC __attribute__((__nothrow__)) FNIEMRECOMP(PVMCPU pVCpu, uint64_t uParam0, uint64_t uParam1, uint64_t uParam2);
     4973typedef VBOXSTRICTRC /*__attribute__((__nothrow__))*/ FNIEMTHREADEDFUNC(PVMCPU pVCpu, uint64_t uParam0, uint64_t uParam1, uint64_t uParam2);
    49744974typedef FNIEMTHREADEDFUNC *PFNIEMTHREADEDFUNC;
    49754975# define IEM_DECL_IEMTHREADEDFUNC_DEF(a_Name) \
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette