Index: lib/Target/AArch64/AArch64ISelLowering.cpp =================================================================== --- lib/Target/AArch64/AArch64ISelLowering.cpp +++ lib/Target/AArch64/AArch64ISelLowering.cpp @@ -403,7 +403,7 @@ setOperationAction(ISD::FSQRT, MVT::v4f16, Expand); } - + // v8f16 is also a storage-only type, so expand it. setOperationAction(ISD::FABS, MVT::v8f16, Expand); setOperationAction(ISD::FADD, MVT::v8f16, Expand); @@ -10835,7 +10835,7 @@ return UseTlsOffset(IRB, 0x28); // Fuchsia is similar. - // defines MX_TLS_STACK_GUARD_OFFSET with this value. + // defines ZX_TLS_STACK_GUARD_OFFSET with this value. if (Subtarget->isTargetFuchsia()) return UseTlsOffset(IRB, -0x10); @@ -10850,7 +10850,7 @@ return UseTlsOffset(IRB, 0x48); // Fuchsia is similar. - // defines MX_TLS_UNSAFE_SP_OFFSET with this value. + // defines ZX_TLS_UNSAFE_SP_OFFSET with this value. if (Subtarget->isTargetFuchsia()) return UseTlsOffset(IRB, -0x8); Index: lib/Target/X86/X86ISelLowering.cpp =================================================================== --- lib/Target/X86/X86ISelLowering.cpp +++ lib/Target/X86/X86ISelLowering.cpp @@ -2020,7 +2020,7 @@ // sysdeps/{i386,x86_64}/nptl/tls.h) if (hasStackGuardSlotTLS(Subtarget.getTargetTriple())) { if (Subtarget.isTargetFuchsia()) { - // defines MX_TLS_STACK_GUARD_OFFSET with this value. + // defines ZX_TLS_STACK_GUARD_OFFSET with this value. return SegmentOffset(IRB, 0x10, getAddressSpace()); } else { // %fs:0x28, unless we're using a Kernel code model, in which case @@ -2085,7 +2085,7 @@ // Fuchsia is similar. if (Subtarget.isTargetFuchsia()) { - // defines MX_TLS_UNSAFE_SP_OFFSET with this value. + // defines ZX_TLS_UNSAFE_SP_OFFSET with this value. return SegmentOffset(IRB, 0x18, getAddressSpace()); }