aboutsummaryrefslogtreecommitdiff
path: root/gcc/optabs.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/optabs.h')
-rw-r--r--gcc/optabs.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/optabs.h b/gcc/optabs.h
index 613831a..621136b 100644
--- a/gcc/optabs.h
+++ b/gcc/optabs.h
@@ -235,6 +235,9 @@ enum optab_index
/* Extract specified elements from vectors, for vector load. */
OTI_vec_realign_load,
+ /* Perform a raise to the power of integer. */
+ OTI_powi,
+
OTI_MAX
};
@@ -340,6 +343,8 @@ extern GTY(()) optab optab_table[OTI_MAX];
#define vec_init_optab (optab_table[OTI_vec_init])
#define vec_realign_load_optab (optab_table[OTI_vec_realign_load])
+#define powi_optab (optab_table[OTI_powi])
+
/* Conversion optabs have their own table and indexes. */
enum convert_optab_index
{