Ignore:
Timestamp:
Feb 6, 2017, 1:00:00 PM (8 years ago)
Author:
Silvan Scherrer
Message:

binutils: update trunk to version 2.27

Location:
binutils/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • binutils/trunk

  • TabularUnified binutils/trunk/ld/testplug.c

    r970 r1973  
    11/* Test plugin for the GNU linker.
    2    Copyright (C) 2010-2014 Free Software Foundation, Inc.
     2   Copyright (C) 2010-2016 Free Software Foundation, Inc.
    33
    44   This file is part of the GNU Binutils.
     
    8888  ADDENTRY(LDPT_MESSAGE),
    8989  ADDENTRY(LDPT_GET_INPUT_FILE),
     90  ADDENTRY(LDPT_GET_VIEW),
    9091  ADDENTRY(LDPT_RELEASE_INPUT_FILE),
    9192  ADDENTRY(LDPT_ADD_INPUT_LIBRARY),
     
    105106static ld_plugin_message tv_message = 0;
    106107static ld_plugin_get_input_file tv_get_input_file = 0;
     108static ld_plugin_get_view tv_get_view = 0;
    107109static ld_plugin_release_input_file tv_release_input_file = 0;
    108110static ld_plugin_add_input_library tv_add_input_library = 0;
     
    368370      case LDPT_MESSAGE:
    369371      case LDPT_GET_INPUT_FILE:
     372      case LDPT_GET_VIEW:
    370373      case LDPT_RELEASE_INPUT_FILE:
    371374      case LDPT_ADD_INPUT_LIBRARY:
     
    433436      case LDPT_GET_INPUT_FILE:
    434437        SETVAR(tv_get_input_file);
     438        break;
     439      case LDPT_GET_VIEW:
     440        SETVAR(tv_get_view);
    435441        break;
    436442      case LDPT_RELEASE_INPUT_FILE:
Note: See TracChangeset for help on using the changeset viewer.