Deleted Added
sdiff udiff text old ( 13663:9b64aeabf9a5 ) new ( 13672:2969e4d5abf4 )
full compact
1# Copyright (c) 2016 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 37 unchanged lines hidden (view full) ---

46import sys
47
48import convert
49import jobfile
50
51from attrdict import attrdict, multiattrdict, optiondict
52from code_formatter import code_formatter
53from multidict import multidict
54from orderdict import orderdict
55from smartdict import SmartDict
56from sorteddict import SortedDict
57
58# panic() should be called when something happens that should never
59# ever happen regardless of what the user does (i.e., an acutal m5
60# bug).
61def panic(fmt, *args):
62 print('panic:', fmt % args, file=sys.stderr)

--- 154 unchanged lines hidden ---