annotate gcc/testsuite/jit.dg/test-empty.c @ 132:d34655255c78

update gcc-8.2
author mir3636
date Thu, 25 Oct 2018 10:21:07 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 #include <stdlib.h>
kono
parents:
diff changeset
2 #include <stdio.h>
kono
parents:
diff changeset
3
kono
parents:
diff changeset
4 #include "libgccjit.h"
kono
parents:
diff changeset
5
kono
parents:
diff changeset
6 #include "harness.h"
kono
parents:
diff changeset
7
kono
parents:
diff changeset
8 void
kono
parents:
diff changeset
9 create_code (gcc_jit_context *ctxt, void *user_data)
kono
parents:
diff changeset
10 {
kono
parents:
diff changeset
11 /* Do nothing. */
kono
parents:
diff changeset
12 }
kono
parents:
diff changeset
13
kono
parents:
diff changeset
14 void
kono
parents:
diff changeset
15 verify_code (gcc_jit_context *ctxt, gcc_jit_result *result)
kono
parents:
diff changeset
16 {
kono
parents:
diff changeset
17 /* We should have a non-NULL result, albeit one with nothing in it. */
kono
parents:
diff changeset
18 CHECK_NON_NULL (result);
kono
parents:
diff changeset
19 }
kono
parents:
diff changeset
20