comparison lisp/progmodes/compile.el @ 14046:000d4719b874

(compilation-error-regexp-alist): Add regexp for IBM AIX xlc compiler.
author Roland McGrath <roland@gnu.org>
date Sat, 06 Jan 1996 21:03:47 +0000
parents 1300c7703f67
children 2df0227ff613
comparison
equal deleted inserted replaced
14045:1300c7703f67 14046:000d4719b874
170 ;; IBM AIX PS/2 C version 1.1: 170 ;; IBM AIX PS/2 C version 1.1:
171 ;; ****** Error number 140 in line 8 of file errors.c ****** 171 ;; ****** Error number 140 in line 8 of file errors.c ******
172 ("in line \\([0-9]+\\) of file \\([^ \n]+[^. \n]\\)\\.? " 2 1) 172 ("in line \\([0-9]+\\) of file \\([^ \n]+[^. \n]\\)\\.? " 2 1)
173 ;; IBM AIX lint is too painful to do right this way. File name 173 ;; IBM AIX lint is too painful to do right this way. File name
174 ;; prefixes entire sections rather than being on each line. 174 ;; prefixes entire sections rather than being on each line.
175 ;; IBM AIX xlc compiler:
176 ;; "src/swapping.c", line 30.34: 1506-342 (W) "/*" detected in comment.
177 ("\"\\([^\"]+\\)\", lines? \\([0-9]+\\)\\(\\.\\([0-9]+\\)\\)" 1 2 4)
175 178
176 ;; Lucid Compiler, lcc 3.x 179 ;; Lucid Compiler, lcc 3.x
177 ;; E, file.cc(35,52) Illegal operation on pointers 180 ;; E, file.cc(35,52) Illegal operation on pointers
178 ("\n[EW], \\([^(\n]*\\)(\\([0-9]+\\),[ \t]*\\([0-9]+\\)" 1 2 3) 181 ("\n[EW], \\([^(\n]*\\)(\\([0-9]+\\),[ \t]*\\([0-9]+\\)" 1 2 3)
179 182