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 {
675
675
676
676
// / isImmPCRel - Return true if the immediate of the specified instruction's
677
677
// / TSFlags indicates that it is pc relative.
678
- inline unsigned isImmPCRel (uint64_t TSFlags) {
678
+ inline bool isImmPCRel (uint64_t TSFlags) {
679
679
switch (TSFlags & X86II::ImmMask) {
680
680
default : llvm_unreachable (" Unknown immediate size" );
681
681
case X86II::Imm8PCRel:
@@ -694,7 +694,7 @@ namespace X86II {
694
694
695
695
// / isImmSigned - Return true if the immediate of the specified instruction's
696
696
// / TSFlags indicates that it is signed.
697
- inline unsigned isImmSigned (uint64_t TSFlags) {
697
+ inline bool isImmSigned (uint64_t TSFlags) {
698
698
switch (TSFlags & X86II::ImmMask) {
699
699
default : llvm_unreachable (" Unknown immediate signedness" );
700
700
case X86II::Imm32S:
You can’t perform that action at this time.
0 commit comments