mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Don't enable GlobalISel on arm64e
It is not well supported rdar://82082527
This commit is contained in:
@@ -1885,7 +1885,8 @@ static bool ParseIRGenArgs(IRGenOptions &Opts, ArgList &Args,
|
||||
|
||||
if (SWIFT_ENABLE_GLOBAL_ISEL_ARM64 &&
|
||||
(Triple.getArch() == llvm::Triple::aarch64 ||
|
||||
Triple.getArch() == llvm::Triple::aarch64_32)) {
|
||||
Triple.getArch() == llvm::Triple::aarch64_32) &&
|
||||
Triple.getArchName() != "arm64e") {
|
||||
Opts.EnableGlobalISel = true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user