mv = cw.visitMethod(ACC_PUBLIC, "<init>", "()V", null, null);
mv.visitAttribute(new Comment());
mv.visitCode();
mv.visitVarInsn(ALOAD, 0);
mv.visitMethodInsn(INVOKESPECIAL, "java/lang/Object", "<init>", "()V");
/*
* the following instructions are designed so that this method will be
* resized by the method resizing test, in order to cover the code that
* recomputes the code attribute labels in the resizeInstructions method