mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-07 15:56:06 +00:00
20 lines
573 B
C++
20 lines
573 B
C++
![]() |
//===- AsmParser.cpp - Parser for Assembly Files --------------------------===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
// This class implements the parser for assembly files.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#include "AsmParser.h"
|
||
|
using namespace llvm;
|
||
|
|
||
|
bool AsmParser::Run() {
|
||
|
return false;
|
||
|
}
|