Rafael Espindola | 1edc08b | 2011-06-12 05:57:01 +0000 | [diff] [blame^] | 1 | ; RUN: llc -mtriple=x86_64-apple-darwin10 -O0 < %s | FileCheck %s |
| 2 | |
| 3 | ; test that we print a label that we use. We had a bug where |
| 4 | ; we would print the jump, but not the label because it was considered |
| 5 | ; a fall through. |
| 6 | |
| 7 | ; CHECK: jmp LBB0_1 |
| 8 | ; CHECK: LBB0_1: |
| 9 | |
| 10 | define void @foobar() { |
| 11 | entry: |
| 12 | invoke void @_zed() |
| 13 | to label %invoke.cont unwind label %lpad |
| 14 | |
| 15 | invoke.cont: ; preds = %entry |
| 16 | ret void |
| 17 | |
| 18 | lpad: ; preds = %entry |
| 19 | unreachable |
| 20 | } |
| 21 | |
| 22 | declare void @_zed() ssp align 2 |