1*2f09f445SMaksim Panchenko //===- bolt/Passes/LivenessAnalysis.cpp -----------------------------------===//
2a34c753fSRafael Auler //
3a34c753fSRafael Auler // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4a34c753fSRafael Auler // See https://llvm.org/LICENSE.txt for license information.
5a34c753fSRafael Auler // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6a34c753fSRafael Auler //
7a34c753fSRafael Auler //===----------------------------------------------------------------------===//
8*2f09f445SMaksim Panchenko 
9a34c753fSRafael Auler #include "bolt/Passes/LivenessAnalysis.h"
10a34c753fSRafael Auler 
11a34c753fSRafael Auler namespace llvm {
12a34c753fSRafael Auler namespace bolt {
13a34c753fSRafael Auler 
~LivenessAnalysis()14a34c753fSRafael Auler LivenessAnalysis::~LivenessAnalysis() {}
15a34c753fSRafael Auler 
16a34c753fSRafael Auler } // end namespace bolt
17a34c753fSRafael Auler } // end namespace llvm
18