diff options
Diffstat (limited to 'llvm/lib/Target/BPF/BPFCallingConv.cpp')
-rw-r--r-- | llvm/lib/Target/BPF/BPFCallingConv.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/llvm/lib/Target/BPF/BPFCallingConv.cpp b/llvm/lib/Target/BPF/BPFCallingConv.cpp new file mode 100644 index 0000000..29793b3 --- /dev/null +++ b/llvm/lib/Target/BPF/BPFCallingConv.cpp @@ -0,0 +1,19 @@ +//=== BPFCallingConv.cpp ---- BPF Calling Convention Routines ---*- C++ -*-===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// +// +// This file implements BPF Calling Convention Routines +// +//===----------------------------------------------------------------------===// + +#include "BPFCallingConv.h" +#include "BPFRegisterInfo.h" +#include "BPFSubtarget.h" + +using namespace llvm; + +#include "BPFGenCallingConv.inc" |