1 | /* $Id: test-gccplugin-2.c 70558 2018-01-12 14:11:39Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * Compiler plugin testcase \#2.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2010-2017 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | /* Only valid stuff in this one. */
|
---|
19 | extern void MyIprtPrintf(const char *pszFormat, ...) __attribute__((__iprt_format__(1,2)));
|
---|
20 | extern void foo(const char *pszFormat, ...);
|
---|
21 |
|
---|
22 | extern unsigned long long g_ull;
|
---|
23 |
|
---|
24 | typedef unsigned long long RTGCPHYS;
|
---|
25 | extern RTGCPHYS g_GCPhys;
|
---|
26 |
|
---|
27 | typedef RTGCPHYS *PRTGCPHYS;
|
---|
28 | extern PRTGCPHYS g_pGCPhys;
|
---|
29 |
|
---|
30 | #include <stdarg.h>
|
---|
31 |
|
---|
32 | void foo(const char *pszFormat, ...)
|
---|
33 | {
|
---|
34 | MyIprtPrintf("%s %RX64 %RGp %p %RGp", "foobar", g_ull, g_GCPhys, g_pGCPhys, *g_pGCPhys);
|
---|
35 | MyIprtPrintf("%RX32 %d %s\n", 10, 42, "string");
|
---|
36 | MyIprtPrintf("%u %.8Rhxs %d\n", 10, &g_ull, 42);
|
---|
37 | MyIprtPrintf("%u %.8RhxD %d\n", 10, &g_ull, 42);
|
---|
38 | {
|
---|
39 | va_list va;
|
---|
40 | int iValue;
|
---|
41 | va_start(va, pszFormat);
|
---|
42 | iValue = va_arg(va, int);
|
---|
43 | va_end(va);
|
---|
44 | MyIprtPrintf("%u\n", iValue);
|
---|
45 | }
|
---|
46 | }
|
---|
47 |
|
---|