mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Simplify code. Remove "else after return".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175212 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
27d844f4d0
commit
fe9b5a4f74
@ -326,12 +326,11 @@ bool X86FastISel::X86FastEmitExtend(ISD::NodeType Opc, EVT DstVT,
|
||||
unsigned &ResultReg) {
|
||||
unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc,
|
||||
Src, /*TODO: Kill=*/false);
|
||||
|
||||
if (RR != 0) {
|
||||
ResultReg = RR;
|
||||
return true;
|
||||
} else
|
||||
if (RR == 0)
|
||||
return false;
|
||||
|
||||
ResultReg = RR;
|
||||
return true;
|
||||
}
|
||||
|
||||
/// X86SelectAddress - Attempt to fill in an address from the given value.
|
||||
|
Loading…
x
Reference in New Issue
Block a user