
These are identified by misc-include-cleaner. I've filtered out those that break builds. Also, I'm staying away from llvm-config.h, config.h, and Compiler.h, which likely cause platform- or compiler-specific build failures.
23 lines
720 B
C++
23 lines
720 B
C++
//===-- AVRMCExpr.cpp - AVR specific MC expression classes ----------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "AVRMCExpr.h"
|
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
|
#include "llvm/MC/MCAssembler.h"
|
|
#include "llvm/MC/MCContext.h"
|
|
|
|
namespace llvm {
|
|
|
|
const AVRMCExpr *AVRMCExpr::create(Specifier Kind, const MCExpr *Expr,
|
|
bool Negated, MCContext &Ctx) {
|
|
return new (Ctx) AVRMCExpr(Kind, Expr, Negated);
|
|
}
|
|
|
|
} // namespace llvm
|