inorder-o3: allow both to compile together

allow InOrder and O3CPU to be compiled at the same time: need to make branch prediction filed shared by both models
This commit is contained in:
Korey Sewell
2009-05-12 15:01:14 -04:00
parent 5127ea226a
commit f41df0ee08
7 changed files with 7 additions and 11 deletions

View File

@@ -128,6 +128,13 @@ Source('simple_thread.cc')
Source('thread_context.cc')
Source('thread_state.cc')
if 'InOrderCPU' in env['CPU_MODELS'] or 'O3CPU' in env['CPU_MODELS']:
Source('btb.cc')
Source('tournament_pred.cc')
Source('2bit_local_pred.cc')
Source('ras.cc')
TraceFlag('FreeList')
if env['FULL_SYSTEM']:
SimObject('IntrControl.py')