diff options
| author | Anton Korobeynikov <asl@math.spbu.ru> | 2010-11-18 23:25:52 +0000 |
|---|---|---|
| committer | Anton Korobeynikov <asl@math.spbu.ru> | 2010-11-18 23:25:52 +0000 |
| commit | 14ee344944cad9a61ff15e113c27df093d851ff1 (patch) | |
| tree | f6888cee9de9a226327cf8a1952493116cd282fb /llvm/lib/Target/TargetFrameInfo.cpp | |
| parent | a391c97bd0032c0b5af03cde95f7c40683c02be8 (diff) | |
| download | bcm5719-llvm-14ee344944cad9a61ff15e113c27df093d851ff1.tar.gz bcm5719-llvm-14ee344944cad9a61ff15e113c27df093d851ff1.zip | |
Move getInitialFrameState() to TargetFrameInfo
llvm-svn: 119754
Diffstat (limited to 'llvm/lib/Target/TargetFrameInfo.cpp')
| -rw-r--r-- | llvm/lib/Target/TargetFrameInfo.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/lib/Target/TargetFrameInfo.cpp b/llvm/lib/Target/TargetFrameInfo.cpp index 873d60a1b5f..ff9b89a6f4a 100644 --- a/llvm/lib/Target/TargetFrameInfo.cpp +++ b/llvm/lib/Target/TargetFrameInfo.cpp @@ -17,3 +17,10 @@ using namespace llvm; TargetFrameInfo::~TargetFrameInfo() { } + +/// getInitialFrameState - Returns a list of machine moves that are assumed +/// on entry to a function. +void +TargetFrameInfo::getInitialFrameState(std::vector<MachineMove> &Moves) const { + // Default is to do nothing. +} |

