diff options
| author | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-03-06 23:08:44 +0000 |
|---|---|---|
| committer | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-03-06 23:08:44 +0000 |
| commit | cb98644e9ba8f44bbd07beb8ba84ab300fcdf277 (patch) | |
| tree | cf00a4545d9339d5a6d19d6652769763309e6ac4 | |
| parent | 79850121ad198296f71c5ad26602eba516610bf1 (diff) | |
| download | bcm5719-llvm-cb98644e9ba8f44bbd07beb8ba84ab300fcdf277.tar.gz bcm5719-llvm-cb98644e9ba8f44bbd07beb8ba84ab300fcdf277.zip | |
As I wrote in the docs, simple is the default spiller :-)
llvm-svn: 12189
| -rw-r--r-- | llvm/lib/CodeGen/VirtRegMap.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/VirtRegMap.cpp b/llvm/lib/CodeGen/VirtRegMap.cpp index 4306caacb8d..d2c53d5ba6f 100644 --- a/llvm/lib/CodeGen/VirtRegMap.cpp +++ b/llvm/lib/CodeGen/VirtRegMap.cpp @@ -45,8 +45,7 @@ namespace { cl::values(clEnumVal(simple, " simple spiller"), clEnumVal(local, " local spiller"), 0), -// cl::init(local)); - cl::init(simple)); + cl::init(local)); } int VirtRegMap::assignVirt2StackSlot(unsigned virtReg) |

