diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2019-11-05 21:25:55 +0000 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2019-11-05 21:37:53 +0000 |
commit | 91ff598680e2530aa79c2e1a24d0dcea414cd5b2 (patch) | |
tree | 604e23d72acd8651091814bd5ae2155fd480c8ab /llvm/lib | |
parent | 6a79e083a0d131e741ac8f48badbb0481491e47f (diff) | |
download | bcm5719-llvm-91ff598680e2530aa79c2e1a24d0dcea414cd5b2.tar.gz bcm5719-llvm-91ff598680e2530aa79c2e1a24d0dcea414cd5b2.zip |
[Hexagon] getCompoundCandidateGroup - fix 'false' value is implicitly cast to unsigned warning. NFCI.
Consistently return HexagonII::HCG_None.
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp b/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp index ed571188c1e..2b0bbdafa38 100644 --- a/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp +++ b/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp @@ -92,7 +92,7 @@ static unsigned getCompoundCandidateGroup(MCInst const &MI, bool IsExtended) { case Hexagon::C2_cmpgt: case Hexagon::C2_cmpgtu: if (IsExtended) - return false; + return HexagonII::HCG_None; DstReg = MI.getOperand(0).getReg(); Src1Reg = MI.getOperand(1).getReg(); Src2Reg = MI.getOperand(2).getReg(); @@ -105,7 +105,7 @@ static unsigned getCompoundCandidateGroup(MCInst const &MI, bool IsExtended) { case Hexagon::C2_cmpgti: case Hexagon::C2_cmpgtui: if (IsExtended) - return false; + return HexagonII::HCG_None; // P0 = cmp.eq(Rs,#u2) DstReg = MI.getOperand(0).getReg(); SrcReg = MI.getOperand(1).getReg(); @@ -117,7 +117,7 @@ static unsigned getCompoundCandidateGroup(MCInst const &MI, bool IsExtended) { break; case Hexagon::A2_tfr: if (IsExtended) - return false; + return HexagonII::HCG_None; // Rd = Rs DstReg = MI.getOperand(0).getReg(); SrcReg = MI.getOperand(1).getReg(); @@ -127,7 +127,7 @@ static unsigned getCompoundCandidateGroup(MCInst const &MI, bool IsExtended) { break; case Hexagon::A2_tfrsi: if (IsExtended) - return false; + return HexagonII::HCG_None; // Rd = #u6 DstReg = MI.getOperand(0).getReg(); if (HexagonMCInstrInfo::minConstant(MI, 1) <= 63 && @@ -137,7 +137,7 @@ static unsigned getCompoundCandidateGroup(MCInst const &MI, bool IsExtended) { break; case Hexagon::S2_tstbit_i: if (IsExtended) - return false; + return HexagonII::HCG_None; DstReg = MI.getOperand(0).getReg(); Src1Reg = MI.getOperand(1).getReg(); if ((Hexagon::P0 == DstReg || Hexagon::P1 == DstReg) && |