Displaying 1 result from an estimated 1 matches for "1418bee".
2010 Jun 21
2
[LLVMdev] MC: Object file specific parsing
...d(SMLoc IDLoc, bool IsDump);
+
+ bool ParseDirectiveComm(bool IsLocal);
+ bool ParseDirective(AsmToken DirectiveID);
+ const MCSection *getInitialTextSection();
+};
+
+} // end namespace llvm
+
+#endif
diff --git a/include/llvm/Target/TargetRegistry.h b/include/llvm/Target/TargetRegistry.h
index 1418bee..0270e96 100644
--- a/include/llvm/Target/TargetRegistry.h
+++ b/include/llvm/Target/TargetRegistry.h
@@ -24,6 +24,7 @@
#include <cassert>
namespace llvm {
+ class AsmParser;
class AsmPrinter;
class Module;
class MCAssembler;
@@ -34,9 +35,9 @@ namespace llvm {
class MCDisasse...