diff options
Diffstat (limited to 'gcc/config/bpf')
-rw-r--r-- | gcc/config/bpf/bpf-protos.h | 2 | ||||
-rw-r--r-- | gcc/config/bpf/bpf.h | 2 | ||||
-rw-r--r-- | gcc/config/bpf/t-bpf | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/bpf/bpf-protos.h b/gcc/config/bpf/bpf-protos.h index 0d45558..5ee3248 100644 --- a/gcc/config/bpf/bpf-protos.h +++ b/gcc/config/bpf/bpf-protos.h @@ -20,7 +20,7 @@ along with GCC; see the file COPYING3. If not see #ifndef GCC_BPF_PROTOS_H #define GCC_BPF_PROTOS_H -/* Routines implemented in bpf.c. */ +/* Routines implemented in bpf.cc. */ extern HOST_WIDE_INT bpf_initial_elimination_offset (int, int); extern const char *bpf_output_call (rtx); diff --git a/gcc/config/bpf/bpf.h b/gcc/config/bpf/bpf.h index 1d5d760..5b3f4a5 100644 --- a/gcc/config/bpf/bpf.h +++ b/gcc/config/bpf/bpf.h @@ -276,7 +276,7 @@ enum reg_class /*** Passing Function Arguments on the Stack. */ /* The eBPF ABI doesn't support passing arguments on the stack. Only - in the first five registers. Code in bpf.c assures the stack is + in the first five registers. Code in bpf.cc assures the stack is never used when passing arguments. However, we still have to define the constants below. */ diff --git a/gcc/config/bpf/t-bpf b/gcc/config/bpf/t-bpf index b37bf85..3f3cf8d 100644 --- a/gcc/config/bpf/t-bpf +++ b/gcc/config/bpf/t-bpf @@ -1,7 +1,7 @@ TM_H += $(srcdir)/config/bpf/coreout.h -coreout.o: $(srcdir)/config/bpf/coreout.c +coreout.o: $(srcdir)/config/bpf/coreout.cc $(COMPILE) $< $(POSTCOMPILE) |