repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[TableGen] Fix validateOperandClass for non Phyical Reg (#118146)
[llvm-project.git]
/
lldb
/
test
/
API
/
functionalities
/
unused-inlined-parameters
/
main.c
blob
6f79221daa4c1f4bfd3507622c6911be61992f0a
1
#include <stdio.h>
2
3
__attribute__
((
optnone
))
__attribute__
((
nodebug
))
void
use
(
int
used
) {}
4
5
__attribute__
((
always_inline
))
void
f
(
void
*
unused1
,
int
used
) {
6
use
(
used
);
// break here
7
}
8
9
int
main
(
int
argc
,
char
**
argv
) {
10
char
*
undefined
;
11
f
(
undefined
,
42
);
12
return
0
;
13
}