[MC] Revert part of my previous change, I was a bit overzealous.
authorJoey Gouly <joey.gouly@arm.com>
Tue, 3 Sep 2013 16:18:19 +0000 (16:18 +0000)
committerJoey Gouly <joey.gouly@arm.com>
Tue, 3 Sep 2013 16:18:19 +0000 (16:18 +0000)
A change to test the previous commit will be coming soon.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189825 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/MC/MCTargetAsmParser.h

index a48c5d15f55f149e86db67efdc1bb9a6d3db9334..6e96e8becdab1e31d2e4586fff2407e329a03daa 100644 (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; }