Skip to content

Commit 1279344

Browse files
ahatanakahatanaka
authored andcommitted
[NFC] Call base class method in DarwinAArch64TargetInfo::getOSDefines (llvm#114241)
This is needed for a private patch we'll be upstreaming in the future. rdar://138459863
1 parent d2f2bd0 commit 1279344

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/Basic/Targets/AArch64.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1692,7 +1692,7 @@ void DarwinAArch64TargetInfo::getOSDefines(const LangOptions &Opts,
16921692
if (Triple.isArm64e())
16931693
Builder.defineMacro("__arm64e__", "1");
16941694

1695-
getDarwinDefines(Builder, Opts, Triple, PlatformName, PlatformMinVersion);
1695+
DarwinTargetInfo<AArch64leTargetInfo>::getOSDefines(Opts, Triple, Builder);
16961696
}
16971697

16981698
TargetInfo::BuiltinVaListKind

0 commit comments

Comments
 (0)