SConscript (10934:5af8f40d8f2c) SConscript (10935:acd48ddd725f)
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

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

191
192env.Append(BUILDERS = {'ScanISA' :
193 Builder(action=MakeAction(scan_isa_deps,
194 Transform("NEW DEPS", 1)))})
195
196DebugFlag('IntRegs')
197DebugFlag('FloatRegs')
198DebugFlag('CCRegs')
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

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

191
192env.Append(BUILDERS = {'ScanISA' :
193 Builder(action=MakeAction(scan_isa_deps,
194 Transform("NEW DEPS", 1)))})
195
196DebugFlag('IntRegs')
197DebugFlag('FloatRegs')
198DebugFlag('CCRegs')
199DebugFlag('VectorRegs')
200DebugFlag('MiscRegs')
199DebugFlag('MiscRegs')
201CompoundFlag('Registers', [ 'IntRegs', 'FloatRegs', 'CCRegs', 'VectorRegs',
202 'MiscRegs' ])
200CompoundFlag('Registers', [ 'IntRegs', 'FloatRegs', 'CCRegs', 'MiscRegs' ])