diff options
author | Chris Lattner <sabre@nondot.org> | 2011-01-05 22:26:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-01-05 22:26:52 +0000 |
commit | c46ec649b109ee7c44b0c8b9df6e913bdb129fc1 (patch) | |
tree | 394fab30d60955cb7454eeed6a92bc9115a8a6a7 | |
parent | 6b705d482511e432a543d04f6f5e27f5881b6441 (diff) |
silence more self assignment warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122920 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86FastISel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/X86/X86FastISel.cpp b/lib/Target/X86/X86FastISel.cpp index 2cdb2a3c64..73177efd17 100644 --- a/lib/Target/X86/X86FastISel.cpp +++ b/lib/Target/X86/X86FastISel.cpp @@ -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; } |