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
Improve compatibility with older versions of Windows.
[llvm/msp430.git]
/
test
/
FrontendC
/
2007-11-27-SExtZExt.c
blob
2b6cd6232d52260eeca47a0e26c57c385144529c
1
// RUN: %llvmgcc -S %s -emit-llvm -o - | grep "signext" | count 4
2
3
signed char
foo1
() {
return
1
; }
4
5
void
foo2
(
signed short
a
) { }
6
7
signed char
foo3
(
void
) {
return
1
; }
8
9
void
foo4
(
a
)
signed short
a
; { }
10
11
12