diff options
Diffstat (limited to 'gdb/arch/arm-get-next-pcs.h')
-rw-r--r-- | gdb/arch/arm-get-next-pcs.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/arch/arm-get-next-pcs.h b/gdb/arch/arm-get-next-pcs.h index 2300ac1..c6723be 100644 --- a/gdb/arch/arm-get-next-pcs.h +++ b/gdb/arch/arm-get-next-pcs.h @@ -19,7 +19,8 @@ #ifndef ARM_GET_NEXT_PCS_H #define ARM_GET_NEXT_PCS_H 1 -#include "gdb_vecs.h" + +#include <vector> /* Forward declaration. */ struct arm_get_next_pcs; @@ -61,6 +62,6 @@ void arm_get_next_pcs_ctor (struct arm_get_next_pcs *self, struct regcache *regcache); /* Find the next possible PCs after the current instruction executes. */ -VEC (CORE_ADDR) *arm_get_next_pcs (struct arm_get_next_pcs *self); +std::vector<CORE_ADDR> arm_get_next_pcs (struct arm_get_next_pcs *self); #endif /* ARM_GET_NEXT_PCS_H */ |