summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/glasm/emit_glasm.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-09-23 20:28:43 -0400
committerGitHub <noreply@github.com>2022-09-23 20:28:43 -0400
commitd794ced30328cf347f2dbacb9444bbe0a3b22a32 (patch)
treeab67b6d87f8c02f2d070a3bfb518c369e038d740 /src/shader_recompiler/backend/glasm/emit_glasm.cpp
parent5082efef6c09a94a73498be898d658dfc2d5c4a2 (diff)
parent4a493cb10f123f5cf2911cfcb1c30b411b21d092 (diff)
Merge pull request #8945 from Tachi107/typos
chore: fix some typos
Diffstat (limited to 'src/shader_recompiler/backend/glasm/emit_glasm.cpp')
-rw-r--r--src/shader_recompiler/backend/glasm/emit_glasm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_glasm.cpp b/src/shader_recompiler/backend/glasm/emit_glasm.cpp
index 97a6b383b..01f9abc71 100644
--- a/src/shader_recompiler/backend/glasm/emit_glasm.cpp
+++ b/src/shader_recompiler/backend/glasm/emit_glasm.cpp
@@ -175,7 +175,7 @@ bool IsReference(IR::Inst& inst) {
}
void PrecolorInst(IR::Inst& phi) {
- // Insert phi moves before references to avoid overwritting other phis
+ // Insert phi moves before references to avoid overwriting other phis
const size_t num_args{phi.NumArgs()};
for (size_t i = 0; i < num_args; ++i) {
IR::Block& phi_block{*phi.PhiBlock(i)};