summaryrefslogtreecommitdiff
path: root/solenv/bin/msg_filter
blob: a7149c35a699190ad1ccab59a37dbd1d14ea9853 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
: # -*- perl -*-
eval 'exec perl -wS $0 ${1+"$@"}'
	if 0;
# This is a script to get rid of bogus error messages that are spit out
# by the compiler - sub 30/11/1999

# Lines that contain `xxxx' where xxxx belongs to the list knownMessages
# and is surrounded by a backtick (`) and a forward tick (') 
# will not be seen in the compiler output


@knownMessages	= (
"__pure_virtual",
"__vt_9bad_alloc",
"__vt_9exception",
"_._9bad_alloc",
"__cp_push_exception",
"__uncatch_exception",
"__rtti_user",
"__rtti_si",
"__throw",
"terminate__Fv",
"__cp_pop_exception",
"__builtin_vec_new",
"__cmpdi2",
"__builtin_vec_delete",
"__cp_eh_info",
"__builtin_delete",
"__builtin_new",
"__eh_alloc",
"__check_eh_spec",
"_type_match_rtti",
"__rtti_class",
"set_new_handler_FPFv_v",
"__throw_type_match_rtti",
"__check_eh_spec",
"exception_type_info",
"exception type_info function",
"exception type_info node",
"exception virtual table",
"terminate(void)"
);

# Create a hash %msgHash from list @knownMessages
foreach $msg (@knownMessages) {
	$msgHash {$msg}++;
}
while ( <STDIN> ) {
	
	if (/\`([\s\w]+)\'/) {
		$entry = $1;
		if (defined($entry)) {
			if (!exists $msgHash{$entry}) {
				print $_;
			}
		}
	}
	else {
		print $_;
	}
}