[arm] Implement ARM .arch directive.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197052 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Logan Chien
2013-12-11 17:16:25 +00:00
parent 7a4d29e569
commit 61f848360f
27 changed files with 886 additions and 2 deletions

View File

@@ -93,6 +93,7 @@ public:
virtual void emitAttribute(unsigned Attribute, unsigned Value) = 0;
virtual void emitTextAttribute(unsigned Attribute, StringRef String) = 0;
virtual void emitFPU(unsigned FPU) = 0;
virtual void emitArch(unsigned Arch) = 0;
virtual void finishAttributeSection() = 0;
};