OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:test6_f
(Results
1 - 3
of
3
) sorted by null
/external/clang/test/Sema/
merge-decls.c
79
void
test6_f
(int (*a)[11]);
80
void
test6_f
(a)
function
85
test6_f
(&arr); // expected-warning {{incompatible pointer types passing 'int (*)[10]' to parameter of type 'int (*)[11]}}
/external/clang/test/CodeGen/
attr-weakref2.c
46
// CHECK: @
test6_f
= extern_weak global i32
47
extern int
test6_f
__attribute__((weak));
48
static int test6_g __attribute__((weakref("
test6_f
")));
53
return
test6_f
;
attr-weakref.c
46
// CHECK: declare extern_weak void @
test6_f
()
47
void
test6_f
(void) __attribute__((weak));
48
static void test6_g(void) __attribute__((weakref("
test6_f
")));
53
test6_f
();
Completed in 3341 milliseconds