Skip to content

Commit

Permalink
Make spellchecker happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Symalla authored and tsymalla-AMD committed Jul 17, 2024
1 parent 3ab4a63 commit 4f95ba4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/ExampleMain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,11 @@ void createFunctionExample(Module &module, const Twine &name) {
b.create<xd::WriteVarArgOp>(p2, varArgs);
b.create<xd::HandleGetOp>();

auto *replacable = b.create<xd::WriteVarArgOp>(p2, varArgs);
auto *replaceable = b.create<xd::WriteVarArgOp>(p2, varArgs);
SmallVector<Value *> varArgs2 = varArgs;
varArgs2.push_back(p2);

replacable->replaceArgs(varArgs2);
replaceable->replaceArgs(varArgs2);
b.create<xd::SetReadOp>(FixedVectorType::get(b.getInt32Ty(), 2));
b.create<xd::SetWriteOp>(y6);

Expand Down

0 comments on commit 4f95ba4

Please sign in to comment.