mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-21 18:24:23 +00:00
Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoid needing to mention the size.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215868 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -155,7 +155,7 @@ int Type::getFPMantissaWidth() const {
|
||||
/// isSizedDerivedType - Derived types like structures and arrays are sized
|
||||
/// iff all of the members of the type are sized as well. Since asking for
|
||||
/// their size is relatively uncommon, move this operation out of line.
|
||||
bool Type::isSizedDerivedType(SmallPtrSet<const Type*, 4> *Visited) const {
|
||||
bool Type::isSizedDerivedType(SmallPtrSetImpl<const Type*> *Visited) const {
|
||||
if (const ArrayType *ATy = dyn_cast<ArrayType>(this))
|
||||
return ATy->getElementType()->isSized(Visited);
|
||||
|
||||
@ -554,7 +554,7 @@ StructType *StructType::create(StringRef Name, Type *type, ...) {
|
||||
return Ret;
|
||||
}
|
||||
|
||||
bool StructType::isSized(SmallPtrSet<const Type*, 4> *Visited) const {
|
||||
bool StructType::isSized(SmallPtrSetImpl<const Type*> *Visited) const {
|
||||
if ((getSubclassData() & SCDB_IsSized) != 0)
|
||||
return true;
|
||||
if (isOpaque())
|
||||
|
Reference in New Issue
Block a user