perf tools: Add empty rule for new line in event syntax parsing
authorJiri Olsa <jolsa@redhat.com>
Tue, 3 Jul 2012 22:00:39 +0000 (00:00 +0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Thu, 5 Jul 2012 14:22:29 +0000 (11:22 -0300)
The flex generator prints out each input character that is ignored by
lex rules.

Since the alias processing, we can have '\n' characters on input. We
need to assign empty rule to it, so it's not printed out.

Signed-off-by: Jiri Olsa <jolsa@redhat.com>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1341352848-11833-2-git-send-email-jolsa@redhat.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/parse-events.l

index a066894..6cbe092 100644 (file)
@@ -152,6 +152,7 @@ r{num_raw_hex}              { return raw(yyscanner); }
 ,                      { return ','; }
 :                      { return ':'; }
 =                      { return '='; }
+\n                     { }
 
 <mem>{
 {modifier_bp}          { return str(yyscanner, PE_MODIFIER_BP); }