repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'master' into msp430
[llvm/msp430.git]
/
test
/
FrontendAda
/
switch.adb
blob
f214bca2ec420b3209c633aa51a8e653c172d279
1
-- RUN: %llvmgcc -c %s
2
function
Switch
(
N
:
Integer
)
return
Integer
is
3
begin
4
case
N
is
5
when
Integer
'First
.. -
1
=>
6
return
-
1
;
7
when
0
=>
8
return
0
;
9
when others
=>
10
return
1
;
11
end case
;
12
end
;