Changeset 100753 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jul 31, 2023 1:26:23 PM (17 months ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllInstPython.py
r100747 r100753 1895 1895 def renderCode(self, cchIndent = 0): 1896 1896 cchIndent += self.cchIndent; 1897 sRet = ' ' * cchIndent + self.asParams[0] + '(' + ', '.join(self.asParams[1:]) + ');';1897 sRet = ' ' * cchIndent + self.asParams[0] + '(' + ', '.join(self.asParams[1:]) + ');'; 1898 1898 if self.fDecode: 1899 1899 sRet += ' // C++ decode\n'; -
trunk/src/VBox/VMM/include/IEMInternal.h
r100752 r100753 4971 4971 /** @todo FNIEMTHREADEDFUNC and friends may need more work... */ 4972 4972 #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);4973 typedef VBOXSTRICTRC /*__attribute__((__nothrow__))*/ FNIEMTHREADEDFUNC(PVMCPU pVCpu, uint64_t uParam0, uint64_t uParam1, uint64_t uParam2); 4974 4974 typedef FNIEMTHREADEDFUNC *PFNIEMTHREADEDFUNC; 4975 4975 # define IEM_DECL_IEMTHREADEDFUNC_DEF(a_Name) \
Note:
See TracChangeset
for help on using the changeset viewer.