[MC] Revert part of my previous change, I was a bit overzealous.

A change to test the previous commit will be coming soon.

llvm-svn: 189825
This commit is contained in:
Joey Gouly 2013-09-03 16:18:19 +00:00
parent 94de518e51
commit f9b6023328
1 changed files with 3 additions and 3 deletions

View File

@ -88,7 +88,7 @@ protected: // Can only create subclasses.
MCTargetAsmParser();
/// AvailableFeatures - The current set of available features.
uint64_t AvailableFeatures;
unsigned AvailableFeatures;
/// ParsingInlineAsm - Are we parsing ms-style inline assembly?
bool ParsingInlineAsm;
@ -100,8 +100,8 @@ protected: // Can only create subclasses.
public:
virtual ~MCTargetAsmParser();
uint64_t getAvailableFeatures() const { return AvailableFeatures; }
void setAvailableFeatures(uint64_t Value) { AvailableFeatures = Value; }
unsigned getAvailableFeatures() const { return AvailableFeatures; }
void setAvailableFeatures(unsigned Value) { AvailableFeatures = Value; }
bool isParsingInlineAsm () { return ParsingInlineAsm; }
void setParsingInlineAsm (bool Value) { ParsingInlineAsm = Value; }