diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-03-08 23:22:03 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-03-08 23:22:03 +0000 |
commit | 8b16a1691882faf169c61fe7adbaeb8c25355881 (patch) | |
tree | bff2c48a879e5ac1b6821697ece637361ab14460 /lib/Target | |
parent | 54a76b880858bc2b6abd1357a5694e16e7794315 (diff) | |
download | external_llvm-8b16a1691882faf169c61fe7adbaeb8c25355881.zip external_llvm-8b16a1691882faf169c61fe7adbaeb8c25355881.tar.gz external_llvm-8b16a1691882faf169c61fe7adbaeb8c25355881.tar.bz2 |
Change PhyRegAlloc::saveStateForValue()'s arg type to deal with
AllocInfo.Instruction becoming an int.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12247 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r-- | lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h index 4ec083c..2536155 100644 --- a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h +++ b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h @@ -126,7 +126,7 @@ private: void buildInterferenceGraphs(); void saveStateForValue (std::vector<AllocInfo> &state, - const Value *V, unsigned Insn, int Opnd); + const Value *V, int Insn, int Opnd); void saveState(); void verifySavedState(); |