repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2017-07-25 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
jit.dg
/
test-empty.c
blob
820f232dfeeecf2f872d364c7c43729b32771837
1
#include <stdlib.h>
2
#include <stdio.h>
3
4
#include
"libgccjit.h"
5
6
#include
"harness.h"
7
8
void
9
create_code
(
gcc_jit_context
*
ctxt
,
void
*
user_data
)
10
{
11
/* Do nothing. */
12
}
13
14
void
15
verify_code
(
gcc_jit_context
*
ctxt
,
gcc_jit_result
*
result
)
16
{
17
/* We should have a non-NULL result, albeit one with nothing in it. */
18
CHECK_NON_NULL
(
result
);
19
}
20