You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
159 B
14 lines
159 B
4 months ago
|
; RUN: not llvm-as < %s > /dev/null 2>&1
|
||
|
|
||
|
|
||
|
|
||
|
int %main() {
|
||
|
start1:
|
||
|
switch uint 0, label %brt0 [int 3, label %brt1 ]
|
||
|
brt0:
|
||
|
ret int 0
|
||
|
brt1:
|
||
|
ret int 0
|
||
|
}
|
||
|
|