20 lines · cpp
1//===- MemoryBufferRef.cpp - Memory Buffer Reference ----------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8//9// This file implements the MemoryBufferRef interface.10//11//===----------------------------------------------------------------------===//12 13#include "llvm/Support/MemoryBufferRef.h"14#include "llvm/Support/MemoryBuffer.h"15 16using namespace llvm;17 18MemoryBufferRef::MemoryBufferRef(const MemoryBuffer &Buffer)19 : Buffer(Buffer.getBuffer()), Identifier(Buffer.getBufferIdentifier()) {}20