@@ -1694,15 +1694,15 @@ bool HWConformity::fixIndirectOpnd( INST_LIST_ITER i, G4_BB *bb )
16941694 addr_dcl0 = src0->asSrcRegRegion ()->getBase ()->asRegVar ()->getDeclare ()->getRootDeclare ();
16951695 // is the following precise?
16961696 src0_count = addr_dcl0->getTotalElems ();
1697- MUST_BE_TRUE (src0_count <= addr_reg_max_count, " More than 8 address subregisters required for one oerand ." );
1697+ MUST_BE_TRUE (src0_count <= addr_reg_max_count, " More than 8 address subregisters required for one operand ." );
16981698 src_uniq_count += src0_count;
16991699 }
17001700
17011701 if (!null_src1 && src1->isSrcRegRegion () &&
17021702 src1->getRegAccess () != Direct && src1->asSrcRegRegion ()->getBase ()->isRegVar ()) {
17031703 addr_dcl1 = src1->asSrcRegRegion ()->getBase ()->asRegVar ()->getDeclare ()->getRootDeclare ();
17041704 src1_count = addr_dcl1->getTotalElems ();
1705- MUST_BE_TRUE (src1_count <= addr_reg_max_count, " More than 8 address subregisters required for one oerand ." );
1705+ MUST_BE_TRUE (src1_count <= addr_reg_max_count, " More than 8 address subregisters required for one operand ." );
17061706 if (addr_dcl1 != addr_dcl0) {
17071707 // should we use top level dcl here?
17081708 src_uniq_count += src1_count;
@@ -1718,7 +1718,7 @@ bool HWConformity::fixIndirectOpnd( INST_LIST_ITER i, G4_BB *bb )
17181718 {
17191719 addr_dcl2 = dst->getBase ()->asRegVar ()->getDeclare ()->getRootDeclare ();
17201720 dst_count = addr_dcl2->getTotalElems ();
1721- MUST_BE_TRUE (dst_count <= addr_reg_max_count, " More than 8 address subregisters required for one oerand ." );
1721+ MUST_BE_TRUE (dst_count <= addr_reg_max_count, " More than 8 address subregisters required for one operand ." );
17221722 if (addr_dcl2 != addr_dcl0 && addr_dcl2 != addr_dcl1) {
17231723 dst_uniq_count += dst_count;
17241724 }
0 commit comments