summaryrefslogtreecommitdiff
path: root/include/llvm
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2010-08-31 19:41:03 +0000
committerDevang Patel <dpatel@apple.com>2010-08-31 19:41:03 +0000
commit81b79b5fa808730d102cdc4b60a52e602d425de5 (patch)
treef91e7be5e040bdf5f7cc0295ed7340665e6e8c3c /include/llvm
parentf727748684ccf3b34270a9e5129181359cf675a3 (diff)
downloadllvm-81b79b5fa808730d102cdc4b60a52e602d425de5.tar.gz
llvm-81b79b5fa808730d102cdc4b60a52e602d425de5.tar.bz2
llvm-81b79b5fa808730d102cdc4b60a52e602d425de5.tar.xz
Revert r112623. It is causing self host build failures.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112631 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/CodeGen/FunctionLoweringInfo.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/llvm/CodeGen/FunctionLoweringInfo.h b/include/llvm/CodeGen/FunctionLoweringInfo.h
index f17fe5a146..c49d1edb20 100644
--- a/include/llvm/CodeGen/FunctionLoweringInfo.h
+++ b/include/llvm/CodeGen/FunctionLoweringInfo.h
@@ -77,9 +77,6 @@ public:
/// anywhere in the function.
DenseMap<const AllocaInst*, int> StaticAllocaMap;
- /// ByValArgFrameIndexMap - Keep track of frame indices for byval arguments.
- DenseMap<const Argument*, int> ByValArgFrameIndexMap;
-
/// ArgDbgValues - A list of DBG_VALUE instructions created during isel for
/// function arguments that are inserted after scheduling is completed.
SmallVector<MachineInstr*, 8> ArgDbgValues;
@@ -141,13 +138,6 @@ public:
assert(R == 0 && "Already initialized this value register!");
return R = CreateRegs(V->getType());
}
-
- /// setByValArgumentFrameIndex - Record frame index for the byval
- /// argument.
- void setByValArgumentFrameIndex(const Argument *A, int FI);
-
- /// getByValArgumentFrameIndex - Get frame index for the byval argument.
- int getByValArgumentFrameIndex(const Argument *A);
};
/// AddCatchInfo - Extract the personality and type infos from an eh.selector