Shift and setcc types default to the pointer type.

llvm-svn: 19619
This commit is contained in:
Chris Lattner 2005-01-16 23:59:48 +00:00
parent 12879e04cb
commit 5f180e4645
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ TargetLowering::TargetLowering(TargetMachine &tm)
memset(OpActions, 0, sizeof(OpActions)); memset(OpActions, 0, sizeof(OpActions));
IsLittleEndian = TD.isLittleEndian(); IsLittleEndian = TD.isLittleEndian();
PointerTy = getValueType(TD.getIntPtrType()); ShiftAmountTy = SetCCResultTy = PointerTy = getValueType(TD.getIntPtrType());
memset(RegClassForVT, 0,MVT::LAST_VALUETYPE*sizeof(TargetRegisterClass*)); memset(RegClassForVT, 0,MVT::LAST_VALUETYPE*sizeof(TargetRegisterClass*));
} }