diff options
author | Vitaly Buka <vitalybuka@google.com> | 2020-06-14 18:59:23 -0700 |
---|---|---|
committer | Vitaly Buka <vitalybuka@google.com> | 2020-06-14 23:05:42 -0700 |
commit | 2f5e535a8478d51e72e693f055a6abd21cceb6b8 (patch) | |
tree | 36a9bcf3b3be0c93b355775b52bde43344ec9edf /llvm/lib/CodeGen/SafeStack.cpp | |
parent | adefa9ca2e19ab197b9efec692d4087ed9ab82e3 (diff) | |
download | llvm-2f5e535a8478d51e72e693f055a6abd21cceb6b8.zip llvm-2f5e535a8478d51e72e693f055a6abd21cceb6b8.tar.gz llvm-2f5e535a8478d51e72e693f055a6abd21cceb6b8.tar.bz2 |
[SafeStack,NFC] Cleanup LiveRange interface
Diffstat (limited to 'llvm/lib/CodeGen/SafeStack.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SafeStack.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SafeStack.cpp b/llvm/lib/CodeGen/SafeStack.cpp index 626e318d..7886bf3 100644 --- a/llvm/lib/CodeGen/SafeStack.cpp +++ b/llvm/lib/CodeGen/SafeStack.cpp @@ -498,7 +498,7 @@ Value *SafeStack::moveStaticAllocasToUnsafeStack( DIBuilder DIB(*F.getParent()); StackColoring SSC(F, StaticAllocas); - static const StackColoring::LiveRange NoColoringRange = {BitVector{1, true}}; + static const StackColoring::LiveRange NoColoringRange(1, true); if (ClColoring) SSC.run(); SSC.removeAllMarkers(); |