Only fails on the Sparc, only when run via the JIT.

And yet, it's a failure in the ``LowerSwitch'' pass.

llvm-svn: 9315
This commit is contained in:
Misha Brukman 2003-10-21 04:13:37 +00:00
parent abe5cdcf21
commit 4947c42086
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
void %main() {
entry: ; No predecessors!
switch uint 1, label %exit [
uint 0, label %label.0
uint 1, label %label.1
]
label.0: ; preds = %endif.1
br label %exit
label.1: ; preds = %endif.1
br label %exit
exit:
ret void
}