From 3ff8ee2447eca4d33aa037b2b0782ae24b410d18 Mon Sep 17 00:00:00 2001 From: jeff Date: Thu, 28 Apr 2022 16:50:55 -0700 Subject: [PATCH] [NFC] Fix typo Reviewed By: kerbowa Differential Revision: https://reviews.llvm.org/D124647 --- llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp b/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp index afc8fd3..dd0fd5f 100644 --- a/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp +++ b/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp @@ -968,7 +968,7 @@ void AMDGPUPassConfig::addIRPasses() { addPass(createAlwaysInlinerLegacyPass()); // We need to add the barrier noop pass, otherwise adding the function // inlining pass will cause all of the PassConfigs passes to be run - // one function at a time, which means if we have a nodule with two + // one function at a time, which means if we have a module with two // functions, then we will generate code for the first function // without ever running any passes on the second. addPass(createBarrierNoopPass()); -- 2.7.4