1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

80 col violation.

llvm-svn: 50266
This commit is contained in:
Evan Cheng 2008-04-25 17:21:40 +00:00
parent 1f831c0f57
commit bbbe14502f

View File

@ -54,7 +54,7 @@ TargetRegisterInfo::getPhysicalRegisterRegClass(unsigned reg,
// Pick the register class of the right type that contains this physreg.
SmallVector<const TargetRegisterClass*, 4> RCs;
for (regclass_iterator I = regclass_begin(), E = regclass_end(); I != E; ++I) {
for (regclass_iterator I = regclass_begin(), E = regclass_end(); I != E; ++I){
if ((VT == MVT::Other || (*I)->hasType(VT)) && (*I)->contains(reg))
RCs.push_back(*I);
}