2021-12-22 02:21:41 +08:00
|
|
|
//===- bolt/Passes/LivenessAnalysis.cpp -----------------------------------===//
|
2017-05-02 07:51:27 +08:00
|
|
|
//
|
2021-03-16 09:04:18 +08:00
|
|
|
// 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
|
2017-05-02 07:51:27 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2021-12-22 02:21:41 +08:00
|
|
|
|
2021-10-09 02:47:10 +08:00
|
|
|
#include "bolt/Passes/LivenessAnalysis.h"
|
2017-05-02 07:51:27 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
namespace bolt {
|
|
|
|
|
|
|
|
LivenessAnalysis::~LivenessAnalysis() {}
|
|
|
|
|
|
|
|
} // end namespace bolt
|
|
|
|
} // end namespace llvm
|