mirror of
https://github.com/opnsense/src.git
synced 2026-03-03 13:51:30 -05:00
19 lines
541 B
C++
19 lines
541 B
C++
//===-- TargetAsmParser.cpp - Target Assembly Parser -----------------------==//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/Target/TargetAsmParser.h"
|
|
using namespace llvm;
|
|
|
|
TargetAsmParser::TargetAsmParser(const Target &T)
|
|
: TheTarget(T), AvailableFeatures(0)
|
|
{
|
|
}
|
|
|
|
TargetAsmParser::~TargetAsmParser() {
|
|
}
|