perf expr: Add < and > operators
[linux-2.6-microblaze.git] / tools / perf / util / expr.l
index 298d866..13e5e3c 100644 (file)
@@ -111,6 +111,8 @@ else                { return ELSE; }
 "|"            { return '|'; }
 "^"            { return '^'; }
 "&"            { return '&'; }
+"<"            { return '<'; }
+">"            { return '>'; }
 "-"            { return '-'; }
 "+"            { return '+'; }
 "*"            { return '*'; }