mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 16:33:28 +00:00
silence more self assignment warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122920 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6b705d4825
commit
c46ec649b1
@ -1547,7 +1547,7 @@ bool X86FastISel::X86SelectCall(const Instruction *I) {
|
||||
case CCValAssign::SExt: {
|
||||
bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
|
||||
Arg, ArgVT, Arg);
|
||||
assert(Emitted && "Failed to emit a sext!"); Emitted=Emitted;
|
||||
assert(Emitted && "Failed to emit a sext!"); (void)Emitted;
|
||||
Emitted = true;
|
||||
ArgVT = VA.getLocVT();
|
||||
break;
|
||||
@ -1555,7 +1555,7 @@ bool X86FastISel::X86SelectCall(const Instruction *I) {
|
||||
case CCValAssign::ZExt: {
|
||||
bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
|
||||
Arg, ArgVT, Arg);
|
||||
assert(Emitted && "Failed to emit a zext!"); Emitted=Emitted;
|
||||
assert(Emitted && "Failed to emit a zext!"); (void)Emitted;
|
||||
Emitted = true;
|
||||
ArgVT = VA.getLocVT();
|
||||
break;
|
||||
@ -1573,7 +1573,7 @@ bool X86FastISel::X86SelectCall(const Instruction *I) {
|
||||
Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
|
||||
Arg, ArgVT, Arg);
|
||||
|
||||
assert(Emitted && "Failed to emit a aext!"); Emitted=Emitted;
|
||||
assert(Emitted && "Failed to emit a aext!"); (void)Emitted;
|
||||
ArgVT = VA.getLocVT();
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user