mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 22:32:43 -04:00
branch. This brings us very close to the 3.0 release, which is expected in a week or two. MFC after: 1 week
19 lines
517 B
C++
19 lines
517 B
C++
//===-- MCTargetAsmParser.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/MC/MCTargetAsmParser.h"
|
|
using namespace llvm;
|
|
|
|
MCTargetAsmParser::MCTargetAsmParser()
|
|
: AvailableFeatures(0)
|
|
{
|
|
}
|
|
|
|
MCTargetAsmParser::~MCTargetAsmParser() {
|
|
}
|