commit | 635c7780796be3419d6112faa857f7077ab89f01 | [log] [tgz] |
---|---|---|
author | Evan Cheng <evan.cheng@apple.com> | Mon May 10 21:24:55 2010 +0000 |
committer | Evan Cheng <evan.cheng@apple.com> | Mon May 10 21:24:55 2010 +0000 |
tree | ee4e8fa05c8f9ff11de4b40e0e31baecb76d3c0c | |
parent | dffbbfcab62147aae6da82722fe6ef7d8016d4f8 [diff] [blame] |
Clear RegSequences vector after eliminating REG_SEQUENCE instructions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103435 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/TwoAddressInstructionPass.cpp b/lib/CodeGen/TwoAddressInstructionPass.cpp index fde32da..4ccb661 100644 --- a/lib/CodeGen/TwoAddressInstructionPass.cpp +++ b/lib/CodeGen/TwoAddressInstructionPass.cpp
@@ -1179,5 +1179,6 @@ MI->eraseFromParent(); } + RegSequences.clear(); return true; }