1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 13:11:39 +01:00

[LAA] Upper-case variable names, NFC

llvm-svn: 243313
This commit is contained in:
Adam Nemet 2015-07-27 19:38:50 +00:00
parent c7915a9342
commit d3a021d6fe

View File

@ -153,10 +153,10 @@ RuntimePointerChecking::generateChecks(
const SmallVectorImpl<int> *PtrPartition) const {
SmallVector<PointerCheck, 4> Checks;
for (unsigned i = 0; i < CheckingGroups.size(); ++i) {
for (unsigned j = i + 1; j < CheckingGroups.size(); ++j) {
const RuntimePointerChecking::CheckingPtrGroup &CGI = CheckingGroups[i];
const RuntimePointerChecking::CheckingPtrGroup &CGJ = CheckingGroups[j];
for (unsigned I = 0; I < CheckingGroups.size(); ++I) {
for (unsigned J = I + 1; J < CheckingGroups.size(); ++J) {
const RuntimePointerChecking::CheckingPtrGroup &CGI = CheckingGroups[I];
const RuntimePointerChecking::CheckingPtrGroup &CGJ = CheckingGroups[J];
if (needsChecking(CGI, CGJ, PtrPartition))
Checks.push_back(std::make_pair(&CGI, &CGJ));