teach the x86 asm parser how to handle segment prefixes

in memory operands.  rdar://7874844


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101661 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2010-04-17 18:56:34 +00:00
parent 7834facff9
commit eef6d78be1
4 changed files with 22 additions and 15 deletions

View File

@@ -14,7 +14,6 @@
#ifndef ASMPARSER_H
#define ASMPARSER_H
#include <vector>
#include "llvm/MC/MCParser/AsmLexer.h"
#include "llvm/MC/MCParser/AsmCond.h"
#include "llvm/MC/MCParser/MCAsmParser.h"
@@ -22,6 +21,7 @@
#include "llvm/MC/MCStreamer.h"
#include "llvm/MC/MCAsmInfo.h"
#include "llvm/ADT/StringMap.h"
#include <vector>
namespace llvm {
class AsmCond;