summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/pr11202.ll
Commit message (Collapse)AuthorAge
* Don't print a label before .cfi_startproc when we don't need to. This makesRafael Espindola2012-01-07
| | | | | | the produce assembly when using CFI just a bit more readable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147743 91177308-0d34-0410-b5e6-96231b3b80d8
* We currently use a callback to handle an IL pass deleting a BB that stillRafael Espindola2011-11-15
has a reference to it. Unfortunately, that doesn't work for codegen passes since we don't get notified of MBB's being deleted (the original BB stays). Use that fact to our advantage and after printing a function, check if any of the IL BBs corresponds to a symbol that was not printed. This fixes pr11202. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144674 91177308-0d34-0410-b5e6-96231b3b80d8