From 98e5d43590021cb4a899b3c4698175b8ea5c6957 Mon Sep 17 00:00:00 2001 From: Thomas Symalla Date: Wed, 17 Jul 2024 14:51:33 +0200 Subject: [PATCH] Make spellchecker happy --- example/ExampleMain.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/ExampleMain.cpp b/example/ExampleMain.cpp index bcae648..00d1c56 100644 --- a/example/ExampleMain.cpp +++ b/example/ExampleMain.cpp @@ -125,11 +125,11 @@ void createFunctionExample(Module &module, const Twine &name) { b.create(p2, varArgs); b.create(); - auto *replacable = b.create(p2, varArgs); + auto *replaceable = b.create(p2, varArgs); SmallVector varArgs2 = varArgs; varArgs2.push_back(p2); - replacable->replaceArgs(varArgs2); + replaceable->replaceArgs(varArgs2); b.create(FixedVectorType::get(b.getInt32Ty(), 2)); b.create(y6);