Skip to content
This repository has been archived by the owner on Jan 1, 2023. It is now read-only.

Commit

Permalink
[llvm-exegesis][NFC] Fix rL374146.
Browse files Browse the repository at this point in the history
Remove extra semicolon: Target.cpp:187:2: warning: extra ‘;’ [-Wpedantic]

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@374147 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
legrosbuffle committed Oct 9, 2019
1 parent 2eb517a commit e756580
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/llvm-exegesis/lib/X86/Target.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ static void setMemOp(InstructionTemplate &IT, int OpIdx,
const auto Op = IT.Instr.Operands[OpIdx];
assert(Op.isExplicit() && "invalid memory pattern");
IT.getValueFor(Op) = OpVal;
};
}

// Common (latency, uops) code for LEA templates. `GetDestReg` takes the
// addressing base and index registers and returns the LEA destination register.
Expand Down

0 comments on commit e756580

Please sign in to comment.