* powerpc.cc (Target_powerpc::symval_for_branch): Don't assert
[platform/upstream/binutils.git] / gold / parameters.h
index 09b0516..10de2ae 100644 (file)
@@ -28,6 +28,7 @@ namespace gold
 
 class General_options;
 class Errors;
+class Timer;
 class Target;
 template<int size, bool big_endian>
 class Sized_target;
@@ -57,6 +58,9 @@ class Parameters
   set_errors(Errors* errors);
 
   void
+  set_timer(Timer* timer);
+
+  void
   set_options(const General_options* options);
 
   void
@@ -70,6 +74,11 @@ class Parameters
   errors() const
   { return this->errors_; }
 
+  // Return the timer object.
+  Timer*
+  timer() const
+  { return this->timer_; }
+
   // Whether the options are valid.  This should not normally be
   // called, but it is needed by gold_exit.
   bool
@@ -177,6 +186,7 @@ class Parameters
   friend class Set_parameters_target_once;
 
   Errors* errors_;
+  Timer* timer_;
   const General_options* options_;
   Target* target_;
   bool doing_static_link_valid_;
@@ -196,6 +206,9 @@ extern void
 set_parameters_errors(Errors* errors);
 
 extern void
+set_parameters_timer(Timer* timer);
+
+extern void
 set_parameters_options(const General_options* options);
 
 extern void