Posted (Nov. 5, 2011, 6:15 p.m.)
-
src/cpu/BaseCPU.py (Diff revision 1) -
This is wrong. Boiled down, it's saying: if x86 or arm: foo; elif x86 or arm: bar; bar will never happen. It's not quite that simple, but that doesn't change the nature of the problem. Have you run regressions on this? I expect it will cause problems in at least one of x86 or ARM.
Posted (Nov. 8, 2011, 3:17 a.m.)
-
src/cpu/BaseCPU.py (Diff revision 1) -
Wouldn't it be equivalent to write: if buildEnv['FULL_SYSTEM'] and buildEnv['TARGET_ISA'] in ['x86', 'arm']: if iwc and dwc: [stuff] else: [other stuff] ?? Assuming I haven't missed some corner case, this sure seems clearer to me.
Posted (Nov. 17, 2011, 6:21 p.m.)
-
src/cpu/BaseCPU.py (Diff revision 1) -
Please ignore: This is a test for submitting a review.
