Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions clang/lib/CIR/CodeGen/TargetInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,6 @@
using namespace clang;
using namespace clang::CIRGen;

static bool testIfIsVoidTy(QualType Ty) {
const auto *BT = Ty->getAs<BuiltinType>();
if (!BT)
return false;

BuiltinType::Kind k = BT->getKind();
return k == BuiltinType::Void;
}

static bool isAggregateTypeForABI(QualType T) {
return !CIRGenFunction::hasScalarEvaluationKind(T) ||
T->isMemberFunctionPointerType();
Expand Down
Loading