1*10e730a2SDan Gohman //=- WebAssemblyMachineFunctionInfo.cpp - WebAssembly Machine Function Info -=//
2*10e730a2SDan Gohman //
3*10e730a2SDan Gohman //                     The LLVM Compiler Infrastructure
4*10e730a2SDan Gohman //
5*10e730a2SDan Gohman // This file is distributed under the University of Illinois Open Source
6*10e730a2SDan Gohman // License. See LICENSE.TXT for details.
7*10e730a2SDan Gohman //
8*10e730a2SDan Gohman //===----------------------------------------------------------------------===//
9*10e730a2SDan Gohman ///
10*10e730a2SDan Gohman /// \file
11*10e730a2SDan Gohman /// \brief This file implements WebAssembly-specific per-machine-function
12*10e730a2SDan Gohman /// information.
13*10e730a2SDan Gohman ///
14*10e730a2SDan Gohman //===----------------------------------------------------------------------===//
15*10e730a2SDan Gohman 
16*10e730a2SDan Gohman #include "WebAssemblyMachineFunctionInfo.h"
17*10e730a2SDan Gohman using namespace llvm;
18*10e730a2SDan Gohman 
19*10e730a2SDan Gohman WebAssemblyFunctionInfo::~WebAssemblyFunctionInfo() {}
20