Skip to content
Snippets Groups Projects
Commit dd8eb88b authored by Akash Kothari's avatar Akash Kothari :speech_balloon:
Browse files

Fix arguments in DFG2LLVM header -- partially tested

parent 268019cc
No related branches found
No related tags found
No related merge requests found
...@@ -341,6 +341,8 @@ Function *CodeGenTraversal::addArgument(Function* F, Type* Ty, const Twine& name ...@@ -341,6 +341,8 @@ Function *CodeGenTraversal::addArgument(Function* F, Type* Ty, const Twine& name
ai != ae; ++ai) { ai != ae; ++ai) {
ArgTypes.push_back(ai->getType()); ArgTypes.push_back(ai->getType());
} }
ArgTypes.push_back(new_arg->getType());
// Adding new arguments to the function argument list, would not change the // Adding new arguments to the function argument list, would not change the
// function type. We need to change the type of this function to reflect the // function type. We need to change the type of this function to reflect the
// added arguments. So, we create a clone of this function with the correct // added arguments. So, we create a clone of this function with the correct
...@@ -377,8 +379,9 @@ Function *CodeGenTraversal::addIdxDimArgs(Function* F) { ...@@ -377,8 +379,9 @@ Function *CodeGenTraversal::addIdxDimArgs(Function* F) {
Function *newF; Function *newF;
for (int i = 0; i < 6; ++i) { for (int i = 0; i < 6; ++i) {
newF = addArgument(F, Type::getInt64Ty(F->getContext()), names[i]); newF = addArgument(F, Type::getInt64Ty(F->getContext()), names[i]);
ArgTypes.push_back(new_arg->getType());
F->replaceAllUsesWith(UndefValue::get(F->getType())); F->replaceAllUsesWith(UndefValue::get(F->getType()));
F->eraseFromParent(); // F->eraseFromParent();
F = newF; F = newF;
} }
errs() << "Function Type after adding args: " << *newF->getFunctionType() << "\n"; errs() << "Function Type after adding args: " << *newF->getFunctionType() << "\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment