CORE_FIR recoverables could be blamed as checkstop root cause

If a CORE_FIR recoverable attention fails recovery, it will trigger a
core unit checkstop attention via another bit. All core unit checkstop
attentions have the potential to trigger a system checkstop attention.
Therefore, all CORE_FIR recoverable attentions could be blamed a system
checkstop root cause attentions.

Signed-off-by: Zane Shelley <zshelle@us.ibm.com>
Change-Id: Ib2f3916218b4dce88797f645a302716ef4fd4d49
diff --git a/analyzer/filter-root-cause.cpp b/analyzer/filter-root-cause.cpp
index 0ca5686..ba12977 100644
--- a/analyzer/filter-root-cause.cpp
+++ b/analyzer/filter-root-cause.cpp
@@ -154,9 +154,11 @@
     if (TYPE_PROC == targetType)
     {
         if (eq_core_fir == id &&
-            (3 == bit || 5 == bit || 8 == bit || 12 == bit || 22 == bit ||
-             25 == bit || 32 == bit || 36 == bit || 38 == bit || 46 == bit ||
-             47 == bit))
+            (0 == bit || 2 == bit || 3 == bit || 4 == bit || 5 == bit ||
+             7 == bit || 8 == bit || 9 == bit || 11 == bit || 12 == bit ||
+             13 == bit || 18 == bit || 21 == bit || 22 == bit || 24 == bit ||
+             25 == bit || 29 == bit || 31 == bit || 32 == bit || 36 == bit ||
+             37 == bit || 38 == bit || 43 == bit || 46 == bit || 47 == bit))
         {
             return true;
         }