Skip to content

Commit 6cbd602

Browse files
committed
Adjust includes of renamed Clang file
See llvm/llvm-project@3a42cbd (No PR?!)
1 parent b8b60f1 commit 6cbd602

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/AST/ClangTypeConverter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ getClangBuiltinTypeFromKind(const clang::ASTContext &context,
7171
#define SVE_TYPE(Name, Id, SingletonId) \
7272
case clang::BuiltinType::Id: \
7373
return context.SingletonId;
74-
#include "clang/Basic/AArch64SVEACLETypes.def"
74+
#include "clang/Basic/AArch64ACLETypes.def"
7575
#define PPC_VECTOR_TYPE(Name, Id, Size) \
7676
case clang::BuiltinType::Id: \
7777
return context.Id##Ty;

lib/ClangImporter/ClangAdapter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ OmissionTypeName importer::getClangTypeNameForOmission(clang::ASTContext &ctx,
428428

429429
// ARM SVE builtin types that don't have Swift equivalents.
430430
#define SVE_TYPE(Name, Id, ...) case clang::BuiltinType::Id:
431-
#include "clang/Basic/AArch64SVEACLETypes.def"
431+
#include "clang/Basic/AArch64ACLETypes.def"
432432
return OmissionTypeName();
433433

434434
// PPC MMA builtin types that don't have Swift equivalents.

lib/ClangImporter/ImportType.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ namespace {
347347

348348
// ARM SVE builtin types that don't have Swift equivalents.
349349
#define SVE_TYPE(Name, Id, ...) case clang::BuiltinType::Id:
350-
#include "clang/Basic/AArch64SVEACLETypes.def"
350+
#include "clang/Basic/AArch64ACLETypes.def"
351351
return Type();
352352

353353
// PPC SVE builtin types that don't have Swift equivalents.

lib/IRGen/GenCall.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1322,7 +1322,7 @@ namespace {
13221322

13231323
// We should never see ARM SVE types at all.
13241324
#define SVE_TYPE(Name, Id, ...) case clang::BuiltinType::Id:
1325-
#include "clang/Basic/AArch64SVEACLETypes.def"
1325+
#include "clang/Basic/AArch64ACLETypes.def"
13261326
llvm_unreachable("ARM SVE type in ABI lowering");
13271327

13281328
// We should never see PPC MMA types at all.

0 commit comments

Comments
 (0)