Author: Juan Manuel Martinez CaamaƱo Date: 2025-09-22T19:23:20+02:00 New Revision: 9fa23e43fe22a816ed8572173e20a499f2d1f329
URL: https://github.com/llvm/llvm-project/commit/9fa23e43fe22a816ed8572173e20a499f2d1f329 DIFF: https://github.com/llvm/llvm-project/commit/9fa23e43fe22a816ed8572173e20a499f2d1f329.diff LOG: [NFC][Clang] Fix typo memody->memory (#160141) Fix typo memody->memory Added: Modified: clang/lib/Sema/SemaAMDGPU.cpp Removed: ################################################################################ diff --git a/clang/lib/Sema/SemaAMDGPU.cpp b/clang/lib/Sema/SemaAMDGPU.cpp index bb98a39948fce..b53e726b1c970 100644 --- a/clang/lib/Sema/SemaAMDGPU.cpp +++ b/clang/lib/Sema/SemaAMDGPU.cpp @@ -122,7 +122,7 @@ bool SemaAMDGPU::CheckAMDGCNBuiltinFunctionCall(unsigned BuiltinID, << ArgExpr->getType(); auto Ord = ArgResult.Val.getInt().getZExtValue(); - // Check validity of memory ordering as per C11 / C++11's memody model. + // Check validity of memory ordering as per C11 / C++11's memory model. // Only fence needs check. Atomic dec/inc allow all memory orders. if (!llvm::isValidAtomicOrderingCABI(Ord)) return Diag(ArgExpr->getBeginLoc(), _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
