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
/
Assembler
/
2008-09-02-FunctionNotes.ll
blob
761c91e864c4c84eed6a5ea39f1cc99607ad56de
1
; Test function attributes
2
; RUN: llvm-as < %s | llvm-dis | grep inline | count 2
3
4
define void @fn1() alwaysinline {
5
ret void
6
}
7
8
define void @fn2() noinline {
9
ret void
10
}
11
12
define void @fn3() {
13
ret void
14
}