File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
llvm/lib/Target/X86/MCTargetDesc Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -675,7 +675,7 @@ namespace X86II {
675675
676676 // / isImmPCRel - Return true if the immediate of the specified instruction's
677677 // / TSFlags indicates that it is pc relative.
678- inline unsigned isImmPCRel (uint64_t TSFlags) {
678+ inline bool isImmPCRel (uint64_t TSFlags) {
679679 switch (TSFlags & X86II::ImmMask) {
680680 default : llvm_unreachable (" Unknown immediate size" );
681681 case X86II::Imm8PCRel:
@@ -694,7 +694,7 @@ namespace X86II {
694694
695695 // / isImmSigned - Return true if the immediate of the specified instruction's
696696 // / TSFlags indicates that it is signed.
697- inline unsigned isImmSigned (uint64_t TSFlags) {
697+ inline bool isImmSigned (uint64_t TSFlags) {
698698 switch (TSFlags & X86II::ImmMask) {
699699 default : llvm_unreachable (" Unknown immediate signedness" );
700700 case X86II::Imm32S:
You can’t perform that action at this time.
0 commit comments