- Timestamp:
- Jan 12, 2018 2:11:39 PM (7 years ago)
- Location:
- trunk/src/bldprogs
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bldprogs/VBoxCompilerPlugInsGcc.cpp
r69912 r70558 696 696 State.hFmtLoc = gimple_location(hStmt); 697 697 dprintf(" %s() __iprt_format%s__(iFmt=%ld, iArgs=%ld)\n", 698 DECL_NAME(hFnDecl) ? IDENTIFIER_POINTER(DECL_NAME(hFnDecl)) : "<unamed>",698 hFnDecl && DECL_NAME(hFnDecl) ? IDENTIFIER_POINTER(DECL_NAME(hFnDecl)) : "<unamed>", 699 699 State.fMaybeNull ? "_maybe_null" : "", State.iFmt, State.iArgs); 700 700 -
trunk/src/bldprogs/test-gccplugin-2.c
r69500 r70558 18 18 /* Only valid stuff in this one. */ 19 19 extern void MyIprtPrintf(const char *pszFormat, ...) __attribute__((__iprt_format__(1,2))); 20 extern void foo( void);20 extern void foo(const char *pszFormat, ...); 21 21 22 22 extern unsigned long long g_ull;
Note:
See TracChangeset
for help on using the changeset viewer.