diff options
author | Alp Toker <alp@nuanti.com> | 2014-03-02 03:20:38 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2014-03-02 03:20:38 +0000 |
commit | 61007d8ee05a2462d4d7211b714133e37f2a595a (patch) | |
tree | 7b25c5b26cfa1fb0b5d4f8b18094943747f1e2cf /llvm/lib/CodeGen/RegAllocFast.cpp | |
parent | ceb95c47c45851e8f06e0ae125cbebcf9dba2240 (diff) | |
download | llvm-61007d8ee05a2462d4d7211b714133e37f2a595a.zip llvm-61007d8ee05a2462d4d7211b714133e37f2a595a.tar.gz llvm-61007d8ee05a2462d4d7211b714133e37f2a595a.tar.bz2 |
[C++11] Expand and eliminate the LLVM_ENUM_INT_TYPE() macro
llvm-svn: 202607
Diffstat (limited to 'llvm/lib/CodeGen/RegAllocFast.cpp')
-rw-r--r-- | llvm/lib/CodeGen/RegAllocFast.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/RegAllocFast.cpp b/llvm/lib/CodeGen/RegAllocFast.cpp index e92dbd2..55abd08 100644 --- a/llvm/lib/CodeGen/RegAllocFast.cpp +++ b/llvm/lib/CodeGen/RegAllocFast.cpp @@ -144,7 +144,7 @@ namespace { // not be erased. bool isBulkSpilling; - enum LLVM_ENUM_INT_TYPE(unsigned) { + enum : unsigned { spillClean = 1, spillDirty = 100, spillImpossible = ~0u |