Remove this fixme, looking at the linker source, all targets pad to 4 bytes.
[oota-llvm.git] / lib / MC / MCAsmParser.cpp
1 //===-- MCAsmParser.cpp - Abstract Asm Parser Interface -------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #include "llvm/MC/MCAsmParser.h"
11 #include "llvm/MC/MCParsedAsmOperand.h"
12 #include "llvm/Support/SourceMgr.h"
13 using namespace llvm;
14
15 MCAsmParser::MCAsmParser() {
16 }
17
18 MCAsmParser::~MCAsmParser() {
19 }
20
21 bool MCAsmParser::ParseExpression(const MCExpr *&Res) {
22   SMLoc L;
23   return ParseExpression(Res, L);
24 }
25
26
27 /// getStartLoc - Get the location of the first token of this operand.
28 SMLoc MCParsedAsmOperand::getStartLoc() const { return SMLoc(); }
29 SMLoc MCParsedAsmOperand::getEndLoc() const { return SMLoc(); }
30
31