Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Schorn2008-11-11 12:43:26 +0000
committerMarkus Schorn2008-11-11 12:43:26 +0000
commitedeb6f1af14fa0a5eaba55bc0c0ca84be90c8f7d (patch)
tree8629a12e69a4c94c246cb6680dec1c95c944717d /core/org.eclipse.cdt.core.tests/resources/pdomtests/functionTests
parent0700a8fe6898d2f519d40ab5e9c40306d6cb225d (diff)
downloadorg.eclipse.cdt-edeb6f1af14fa0a5eaba55bc0c0ca84be90c8f7d.tar.gz
org.eclipse.cdt-edeb6f1af14fa0a5eaba55bc0c0ca84be90c8f7d.tar.xz
org.eclipse.cdt-edeb6f1af14fa0a5eaba55bc0c0ca84be90c8f7d.zip
Support for parameter annotations by Sebastian Moss, bug 254520.
Diffstat (limited to 'core/org.eclipse.cdt.core.tests/resources/pdomtests/functionTests')
-rw-r--r--core/org.eclipse.cdt.core.tests/resources/pdomtests/functionTests/modifiers.c1
-rw-r--r--core/org.eclipse.cdt.core.tests/resources/pdomtests/functionTests/modifiers.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.core.tests/resources/pdomtests/functionTests/modifiers.c b/core/org.eclipse.cdt.core.tests/resources/pdomtests/functionTests/modifiers.c
index e8364076689..8ee78772ddc 100644
--- a/core/org.eclipse.cdt.core.tests/resources/pdomtests/functionTests/modifiers.c
+++ b/core/org.eclipse.cdt.core.tests/resources/pdomtests/functionTests/modifiers.c
@@ -5,6 +5,7 @@ inline void inlineCFunction(long p1);
void varArgsCFunction(int p1, ...);
const void constCFunction();
volatile void volatileCFunction();
+void storageClassCFunction(register int p1, int p2);
void voidCFunction();
int intCFunction();
diff --git a/core/org.eclipse.cdt.core.tests/resources/pdomtests/functionTests/modifiers.cpp b/core/org.eclipse.cdt.core.tests/resources/pdomtests/functionTests/modifiers.cpp
index 41edbcd4e75..bd5ef3c900e 100644
--- a/core/org.eclipse.cdt.core.tests/resources/pdomtests/functionTests/modifiers.cpp
+++ b/core/org.eclipse.cdt.core.tests/resources/pdomtests/functionTests/modifiers.cpp
@@ -1,4 +1,5 @@
double normalCPPFunction(int p1, char p2, float p3);
+void storageClassCPPFunction(register int p1, auto int p2);
static int staticCPPFunction(double p1);
extern float externCPPFunction(int p1);
inline void inlineCPPFunction(long p1);

Back to the top