repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
This should always be signed chars, so use int8_t. This fixes a miscompile when
[llvm/stm8.git]
/
test
/
ExecutionEngine
/
simpletest.ll
blob
68eb7580b4c1b565e9ffddf5e1efd076adafa826
1
; RUN: lli %s > /dev/null
2
3
define i32 @bar() {
4
ret i32 0
5
}
6
7
define i32 @main() {
8
%r = call i32 @bar( ) ; <i32> [#uses=1]
9
ret i32 %r
10
}
11