Fix AArch64 encodings for by element instructions.
[deliverable/binutils-gdb.git] / gold / incremental.cc
index 21f060c945bc4603b60333d61f59547e9a1370ad..7558d14ff506e14972c2bfb6b6d5adfe3e355ff8 100644 (file)
@@ -311,7 +311,11 @@ Sized_incremental_binary<size, big_endian>::setup_readers()
   for (unsigned int i = 0; i < count; i++)
     {
       Input_entry_reader input_file = inputs.input_file(i);
+#if defined(__GNUC__) && __GNUC__ < 5
       this->input_entry_readers_.push_back(Sized_input_reader(input_file));
+#else
+      this->input_entry_readers_.emplace_back(input_file);
+#endif
       switch (input_file.type())
        {
        case INCREMENTAL_INPUT_OBJECT:
This page took 0.028518 seconds and 4 git commands to generate.