(compute_BBCC_array_size): Assertion `!is_STORE && !is_FPU_R &&
!is_FPU_W' failed.
I don't know if this is correct, but I can run kate having done so.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@171
is_LOAD = is_STORE = is_FPU_R = is_FPU_W = False;
for (i = 0; i < cb->used; i++) {
- //VG_(ppUInstr)(0, &cb->instrs[i]);
+ /* VG_(ppUInstr)(0, &cb->instrs[i]); */
u_in = &cb->instrs[i];
switch(u_in->opcode) {
case LOAD:
/* Two LDBs are possible for a single instruction */
- vg_assert(/*!is_LOAD &&*/ !is_STORE && !is_FPU_R && !is_FPU_W);
+ vg_assert(/*!is_LOAD &&*/ /* !is_STORE && */
+ !is_FPU_R && !is_FPU_W);
is_LOAD = True;
break;
is_LOAD = is_STORE = is_FPU_R = is_FPU_W = False;
for (i = 0; i < cb->used; i++) {
- //VG_(ppUInstr)(0, &cb->instrs[i]);
+ /* VG_(ppUInstr)(0, &cb->instrs[i]); */
u_in = &cb->instrs[i];
switch(u_in->opcode) {
case LOAD:
/* Two LDBs are possible for a single instruction */
- vg_assert(/*!is_LOAD &&*/ !is_STORE && !is_FPU_R && !is_FPU_W);
+ vg_assert(/*!is_LOAD &&*/ /* !is_STORE && */
+ !is_FPU_R && !is_FPU_W);
is_LOAD = True;
break;