Bump version to 8.2.50.DATE-git.
[deliverable/binutils-gdb.git] / gdb / stap-probe.h
index 6d3c12e8267873425457a79b2662f8964468aaf6..80f37f7300697cf717fb756e03c0689a0353a451 100644 (file)
@@ -1,6 +1,6 @@
 /* SystemTap probe support for GDB.
 
-   Copyright (C) 2012-2014 Free Software Foundation, Inc.
+   Copyright (C) 2012-2018 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
 
 struct stap_parse_info
 {
+  stap_parse_info (const char *arg_, struct type *arg_type_,
+                  size_t initial_size, const struct language_defn *lang,
+                  struct gdbarch *gdbarch)
+    : arg (arg_),
+      pstate (initial_size, lang, gdbarch),
+      saved_arg (arg_),
+      arg_type (arg_type_),
+      gdbarch (gdbarch),
+      inside_paren_p (0)
+  {
+  }
+
+  DISABLE_COPY_AND_ASSIGN (stap_parse_info);
+
   /* The probe's argument in a string format.  */
   const char *arg;
 
This page took 0.025594 seconds and 4 git commands to generate.