diff options
author | Tomas Matheson <Tomas.Matheson@arm.com> | 2025-01-31 13:27:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-31 13:27:17 +0000 |
commit | c1163b843b63f775817b84f124cdcf33f25c28f6 (patch) | |
tree | 2f3e3a448127e8f88b4490c32ad86656527c7851 /clang/lib/Sema/Sema.cpp | |
parent | 4378ec7bf4906e160bf4108b5b059b5a7d8adb37 (diff) | |
download | llvm-c1163b843b63f775817b84f124cdcf33f25c28f6.zip llvm-c1163b843b63f775817b84f124cdcf33f25c28f6.tar.gz llvm-c1163b843b63f775817b84f124cdcf33f25c28f6.tar.bz2 |
[NFC] remove string literals from AArch64SVEACLETypes.def (#125063)
Remove string literals from the macro calls.
Diffstat (limited to 'clang/lib/Sema/Sema.cpp')
-rw-r--r-- | clang/lib/Sema/Sema.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Sema/Sema.cpp b/clang/lib/Sema/Sema.cpp index 9507d76..15c18f9 100644 --- a/clang/lib/Sema/Sema.cpp +++ b/clang/lib/Sema/Sema.cpp @@ -478,8 +478,8 @@ void Sema::Initialize() { if (Context.getTargetInfo().hasAArch64SVETypes() || (Context.getAuxTargetInfo() && Context.getAuxTargetInfo()->hasAArch64SVETypes())) { -#define SVE_TYPE(Name, Id, SingletonId) \ - addImplicitTypedef(Name, Context.SingletonId); +#define SVE_TYPE(Name, Id, SingletonId) \ + addImplicitTypedef(#Name, Context.SingletonId); #include "clang/Basic/AArch64SVEACLETypes.def" } |