@@ -187,21 +187,21 @@ bool MCPlusBuilder::hasRestoreState(const MCInst &Inst) const {
187187}
188188
189189void MCPlusBuilder::setRASigned (MCInst &Inst) const {
190- assert (!hasAnnotation (Inst, MCAnnotation::kSigned ));
191- setAnnotationOpValue (Inst, MCAnnotation::kSigned , true );
190+ assert (!hasAnnotation (Inst, MCAnnotation::kRASigned ));
191+ setAnnotationOpValue (Inst, MCAnnotation::kRASigned , true );
192192}
193193
194194bool MCPlusBuilder::isRASigned (const MCInst &Inst) const {
195- return hasAnnotation (Inst, MCAnnotation::kSigned );
195+ return hasAnnotation (Inst, MCAnnotation::kRASigned );
196196}
197197
198198void MCPlusBuilder::setRAUnsigned (MCInst &Inst) const {
199- assert (!hasAnnotation (Inst, MCAnnotation::kUnsigned ));
200- setAnnotationOpValue (Inst, MCAnnotation::kUnsigned , true );
199+ assert (!hasAnnotation (Inst, MCAnnotation::kRAUnsigned ));
200+ setAnnotationOpValue (Inst, MCAnnotation::kRAUnsigned , true );
201201}
202202
203203bool MCPlusBuilder::isRAUnsigned (const MCInst &Inst) const {
204- return hasAnnotation (Inst, MCAnnotation::kUnsigned );
204+ return hasAnnotation (Inst, MCAnnotation::kRAUnsigned );
205205}
206206
207207bool MCPlusBuilder::isRAStateUnknown (const MCInst &Inst) const {
0 commit comments