aarch64: Allow testing for the presence of FEAT_RPRES

Allows testing for the presence of increased precision of
Reciprocal Estimate and Reciprocal Square Root Estimate
from an 8-bit mantissa to a 12-bit mantissa.
diff --git a/src/cpu-features.h b/src/cpu-features.h
index 004bbd2..ebd0578 100644
--- a/src/cpu-features.h
+++ b/src/cpu-features.h
@@ -181,7 +181,9 @@
   /* Alternate floating-point behavior                                      */ \
   V(kAFP,                 "AFP",                    "afp")                     \
   /* Enhanced Counter Virtualization                                        */ \
-  V(kECV,                 "ECV",                    "ecv")
+  V(kECV,                 "ECV",                    "ecv")                     \
+  /* Increased precision of Reciprocal Estimate and Square Root Estimate    */ \
+  V(kRPRES,               "RPRES",                  "rpres")
 // clang-format on