diff options
author | Duncan Sands <baldrick@free.fr> | 2010-07-22 13:10:14 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2010-07-22 13:10:14 +0000 |
commit | 907cd1a569c4b3aa8451ea509f6b1018134884d3 (patch) | |
tree | fcab1e381e098164e96090ee34bef753a7827de9 | |
parent | 945f1ab0a5fb922871b3adda512404d9d6533760 (diff) |
Increase the max physreg size. Patch by Pekka Jääskeläinen.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109102 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Target/TargetRegisterInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetRegisterInfo.h b/include/llvm/Target/TargetRegisterInfo.h index cb7297c5b7..7ee5a92d09 100644 --- a/include/llvm/Target/TargetRegisterInfo.h +++ b/include/llvm/Target/TargetRegisterInfo.h @@ -301,7 +301,7 @@ public: /// considered to be a 'virtual' register, which is part of the SSA /// namespace. This must be the same for all targets, which means that each /// target is limited to this fixed number of registers. - FirstVirtualRegister = 1024 + FirstVirtualRegister = 16384 }; /// isPhysicalRegister - Return true if the specified register number is in |