iflags: Eliminate perl smart match operator
authorJin Kyu Song <jin.kyu.song@intel.com>
Mon, 7 Oct 2013 21:51:09 +0000 (14:51 -0700)
committerJin Kyu Song <jin.kyu.song@intel.com>
Mon, 7 Oct 2013 21:51:09 +0000 (14:51 -0700)
As smart match operator reuiqres perl version 5.10.1 or later,
it is replaced with grep function.
This part of code is going to be completely removed once iflags
renovataion is done. This commit is a quick fix for a build error.

Signed-off-by: Jin Kyu Song <jin.kyu.song@intel.com>
insns.pl

index 60f7dd3..8d1f0ee 100755 (executable)
--- a/insns.pl
+++ b/insns.pl
@@ -483,7 +483,7 @@ sub format_insn($$$$$) {
     # check if two different insn set types are set
     $cnt = 0;
     foreach $fla (split(/,/, $flags)) {
-        if ($fla ~~ @iflags) {
+        if (grep(/$fla/, @iflags)) {
             $cnt++;
             if ($cnt >= 2) {
                 die "Too many insn set flags in $flags\n";