add some useful accessors :)

llvm-svn: 25612
This commit is contained in:
Chris Lattner 2006-01-25 19:58:26 +00:00
parent d36993d81d
commit aff32aa901

View File

@ -52,6 +52,9 @@ public:
/// getFunctionType - InlineAsm's are always pointers to functions.
///
const FunctionType *getFunctionType() const;
const std::string &getAsmString() const { return AsmString; }
const std::string &getConstraintString() const { return Constraints; }
virtual void print(std::ostream &O) const { print(O, 0); }
void print(std::ostream &OS, AssemblyAnnotationWriter *AAW) const;