aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineBasicBlock.cpp
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2010-03-31 20:37:15 +0000
committerDale Johannesen <dalej@apple.com>2010-03-31 20:37:15 +0000
commitb67a6e662040c9dac7e2c2676ab1487991784fa5 (patch)
treebbf1346544bd43c2a1b06e6eca137fd567bdf941 /llvm/lib/CodeGen/MachineBasicBlock.cpp
parent6882a5eea1ebf5bc6e495254a3bc24d17beb464e (diff)
downloadllvm-b67a6e662040c9dac7e2c2676ab1487991784fa5.zip
llvm-b67a6e662040c9dac7e2c2676ab1487991784fa5.tar.gz
llvm-b67a6e662040c9dac7e2c2676ab1487991784fa5.tar.bz2
Fix a nasty dangling-pointer heisenbug that could
generate wrong code pretty much anywhere AFAICT. A case that hits the bug reproducibly is impossible, but the situation was like this: Addr = ... Store -> Addr Addr2 = GEP , 0, 0 Store -> Addr2 Handling the first store, the code changed replaced Addr with a sunkaddr and deleted Addr, but not its table entry. Code in OptimizedBlock replaced Addr2 with a bitcast; if that happened to reuse the memory of Addr, the old table entry was erroneously found when handling the second store. llvm-svn: 100044
Diffstat (limited to 'llvm/lib/CodeGen/MachineBasicBlock.cpp')
0 files changed, 0 insertions, 0 deletions