Changeset 108957 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Apr 12, 2025 12:14:13 AM (4 weeks ago)
- svn:sync-xref-src-repo-rev:
- 168475
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/target-armv8/bsd-spec-analyze.py
r108956 r108957 2335 2335 ' * along with this program; if not, see <https://www.gnu.org/licenses>.', 2336 2336 ' *', 2337 ' * The contents of this file may alternatively be used under the terms', 2338 ' * of the Common Development and Distribution License Version 1.0', 2339 ' * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included', 2340 ' * in the VirtualBox distribution, in which case the provisions of the', 2341 ' * CDDL are applicable instead of those of the GPL.', 2342 ' *', 2343 ' * You may elect to license modified versions of this file under the', 2344 ' * terms and conditions of either the GPL or the CDDL or both.', 2345 ' *', 2346 ' * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0', 2337 ' * SPDX-License-Identifier: GPL-3.0-only', 2347 2338 ' */', 2348 2339 '', … … 2570 2561 'FNIEMOP_DEF_1(%s, uint32_t, uOpcode)' % (oNode.getFuncName(sInstrSet, uDepth),), 2571 2562 '{', 2572 ' static PFIEMOPU32 const s_apfn[] = 2563 ' static PFIEMOPU32 const s_apfn[] =', 2573 2564 ' {', 2574 2565 ]; … … 2578 2569 sTabNm = 'g_apfnIemInterpretOnly' + sInstrSet; 2579 2570 asLines += [ 2580 'PFIEMOPU32 const %s[] = 2571 'PFIEMOPU32 const %s[] =' % (sTabNm,), 2581 2572 '{', 2582 2573 ]; … … 2702 2693 asLines += [ 2703 2694 '#endif /* !VMM_INCLUDED_SRC_VMMAll_target_armv8_%s */' % (sBlockerName,), 2695 '', 2704 2696 ] 2705 2697 return (True, asLines);
Note:
See TracChangeset
for help on using the changeset viewer.