[llvm-commits] CVS: llvm/include/llvm/InlineAsm.h

Chris Lattner lattner at cs.uiuc.edu
Wed Jun 7 15:47:56 PDT 2006



Changes in directory llvm/include/llvm:

InlineAsm.h updated: 1.10 -> 1.11
---
Log message:

Add a virtual dtor to the InlineAsm class so that the principle method of
the class can be defined in InlineAsm.cpp


---
Diffs of the changes:  (+1 -0)

 InlineAsm.h |    1 +
 1 files changed, 1 insertion(+)


Index: llvm/include/llvm/InlineAsm.h
diff -u llvm/include/llvm/InlineAsm.h:1.10 llvm/include/llvm/InlineAsm.h:1.11
--- llvm/include/llvm/InlineAsm.h:1.10	Thu Feb 23 17:36:23 2006
+++ llvm/include/llvm/InlineAsm.h	Wed Jun  7 17:47:44 2006
@@ -35,6 +35,7 @@
   
   InlineAsm(const FunctionType *Ty, const std::string &AsmString,
             const std::string &Constraints, bool hasSideEffects);
+  ~InlineAsm();
 public:
 
   /// InlineAsm::get - Return the the specified uniqued inline asm string.






More information about the llvm-commits mailing list