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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
Misc
/
freebsd-arm-size_t.c
blob
ba7bfecaed0ad050d41e5594dd1a5c28cf1353eb
1
// RUN: %clang_cc1 -triple arm-unknown-freebsd10.0 -verify %s
2
// expected-no-diagnostics
3
4
/* Define a size_t as expected for FreeBSD ARM */
5
typedef
unsigned int size_t
;
6
7
/* Declare a builtin function that uses size_t */
8
void
*
malloc
(
size_t
);
9