Changeset 1973 for binutils/trunk/ld/testplug.c
- Timestamp:
- Feb 6, 2017, 1:00:00 PM (8 years ago)
- Location:
- binutils/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
binutils/trunk ¶
-
Property svn:mergeinfo
set to
/binutils/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
TabularUnified binutils/trunk/ld/testplug.c ¶
r970 r1973 1 1 /* Test plugin for the GNU linker. 2 Copyright (C) 2010-201 4Free Software Foundation, Inc.2 Copyright (C) 2010-2016 Free Software Foundation, Inc. 3 3 4 4 This file is part of the GNU Binutils. … … 88 88 ADDENTRY(LDPT_MESSAGE), 89 89 ADDENTRY(LDPT_GET_INPUT_FILE), 90 ADDENTRY(LDPT_GET_VIEW), 90 91 ADDENTRY(LDPT_RELEASE_INPUT_FILE), 91 92 ADDENTRY(LDPT_ADD_INPUT_LIBRARY), … … 105 106 static ld_plugin_message tv_message = 0; 106 107 static ld_plugin_get_input_file tv_get_input_file = 0; 108 static ld_plugin_get_view tv_get_view = 0; 107 109 static ld_plugin_release_input_file tv_release_input_file = 0; 108 110 static ld_plugin_add_input_library tv_add_input_library = 0; … … 368 370 case LDPT_MESSAGE: 369 371 case LDPT_GET_INPUT_FILE: 372 case LDPT_GET_VIEW: 370 373 case LDPT_RELEASE_INPUT_FILE: 371 374 case LDPT_ADD_INPUT_LIBRARY: … … 433 436 case LDPT_GET_INPUT_FILE: 434 437 SETVAR(tv_get_input_file); 438 break; 439 case LDPT_GET_VIEW: 440 SETVAR(tv_get_view); 435 441 break; 436 442 case LDPT_RELEASE_INPUT_FILE:
Note:
See TracChangeset
for help on using the changeset viewer.