Skip to content

Commit

Permalink
Merge pull request #106 from yash3886/ir2vec_aggregation_update
Browse files Browse the repository at this point in the history
updated vector initialisation
  • Loading branch information
svkeerthy authored May 27, 2024
2 parents a170915 + 4a340f6 commit 9765c01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FlowAware.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ void IR2Vec_FA::collectWriteDefsMap(Module &M) {
}

Vector IR2Vec_FA::getValue(std::string key) {
Vector vec;
Vector vec(DIM, 0);
if (opcMap.find(key) == opcMap.end()) {
errs() << "cannot find key in map : " << key << "\n";
dataMissCounter++;
Expand Down

0 comments on commit 9765c01

Please sign in to comment.