Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gvozdev2010-09-24 22:13:15 +0000
committerAndrew Gvozdev2010-09-24 22:13:15 +0000
commit8cdd50422c0f17797b02f93ff2fb238adac7a3b1 (patch)
treec28ca6d8582b8b1f18793148c2ba18f1f2f1cdc5 /xlc/org.eclipse.cdt.errorparsers.xlc/plugin.properties
parent4d3edd80a2216db9e44594bc2b001410392147f4 (diff)
downloadorg.eclipse.cdt-8cdd50422c0f17797b02f93ff2fb238adac7a3b1.tar.gz
org.eclipse.cdt-8cdd50422c0f17797b02f93ff2fb238adac7a3b1.tar.xz
org.eclipse.cdt-8cdd50422c0f17797b02f93ff2fb238adac7a3b1.zip
bug 323445: Generate cross linked message for redeclaration xlc error
Diffstat (limited to 'xlc/org.eclipse.cdt.errorparsers.xlc/plugin.properties')
-rw-r--r--xlc/org.eclipse.cdt.errorparsers.xlc/plugin.properties3
1 files changed, 3 insertions, 0 deletions
diff --git a/xlc/org.eclipse.cdt.errorparsers.xlc/plugin.properties b/xlc/org.eclipse.cdt.errorparsers.xlc/plugin.properties
index 916d7f31777..f2a22c4eb1b 100644
--- a/xlc/org.eclipse.cdt.errorparsers.xlc/plugin.properties
+++ b/xlc/org.eclipse.cdt.errorparsers.xlc/plugin.properties
@@ -28,6 +28,9 @@ CDTXLCErrorParser.pattern.macro=["]?(.*?)["]?, line ([0-9]+)\\.[0-9]+:( [0-9]*-[
CDTXLCErrorParser.pattern.macro.replacement=Macro name $4 has been redefined on line $2 of $1
CDTXLCErrorParser.pattern.macro.crossreference=Macro name $4 redefines macro originally defined on line $5 of $6
CDTXLCErrorParser.pattern.macro.ignore=["]?(.*?)["]?, line ([0-9]+)\\.[0-9]+:( [0-9]*-[0-9]*)? \\(W\\)\\s*Macro name .* has been redefined\\.
+# "src/temp1.c", line 6.6: 1506-343 (S) Redeclaration of fun differs from previous declaration on line 334 of "include/temp1.h".
+CDTXLCErrorParser.pattern.redeclaration=["]?(.*?)["]?, line ([0-9]+)\\.[0-9]+:( [0-9]*-[0-9]*)? \\(S\\)\\s*Redeclaration of (\\w+) differs from previous declaration on line (\\d+) of "(.*)"\\.
+CDTXLCErrorParser.pattern.redeclaration.crossreference=Redeclaration of $4 differs from another declaration on line $2 of "$1".
# "main.cpp", line 10.6: 1540-0064 (S) Syntax error: "name" was expected but "char" was found.
CDTXLCErrorParser.pattern.error=["]?(.*?)["]?, line ([0-9]+)\\.[0-9]+:( [0-9]*-[0-9]*)? \\([USE]\\)\\s*(.*)
CDTXLCErrorParser.pattern.warning=["]?(.*?)["]?, line ([0-9]+)\\.[0-9]+:( [0-9]*-[0-9]*)? \\(W\\)\\s*(.*)

Back to the top