Changeset 95847 in vbox for trunk/src/VBox
- Timestamp:
- Jul 26, 2022 10:30:38 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/compiler/vcc/stacksup-vcc.cpp
r95832 r95847 30 30 *********************************************************************************************************************************/ 31 31 #include "internal/iprt.h" 32 33 #include <iprt/asm.h> 32 34 #include <iprt/assert.h> 35 36 #include "internal/compiler-vcc.h" 33 37 34 38 … … 106 110 107 111 112 extern "C" void __cdecl _RTC_UninitUse(const char *pszVar) 113 { 114 RTAssertMsg2("\n\n!!Used uninitialized variable %s at %p!!\n\n", 115 pszVar ? pszVar : "", ASMReturnAddress()); 116 RT_BREAKPOINT(); 117 } 118 119 108 120 /** @todo reimplement in assembly (feeling too lazy right now). */ 109 121 extern "C" void __fastcall _RTC_CheckStackVars2(uint8_t *pbFrame, RTC_VAR_DESC_T const *pVar, RTC_ALLOC_ENTRY *pHead) … … 133 145 _RTC_CheckStackVars(pbFrame, pVar); 134 146 } 147
Note:
See TracChangeset
for help on using the changeset viewer.