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

Chris Lattner lattner at cs.uiuc.edu
Thu Feb 23 15:36:37 PST 2006



Changes in directory llvm/include/llvm:

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

add a new flag


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

 InlineAsm.h |    4 ++++
 1 files changed, 4 insertions(+)


Index: llvm/include/llvm/InlineAsm.h
diff -u llvm/include/llvm/InlineAsm.h:1.9 llvm/include/llvm/InlineAsm.h:1.10
--- llvm/include/llvm/InlineAsm.h:1.9	Mon Feb  6 19:12:49 2006
+++ llvm/include/llvm/InlineAsm.h	Thu Feb 23 17:36:23 2006
@@ -90,6 +90,10 @@
     /// there is an input constraint that is required to match it (e.g. "0").
     bool hasMatchingInput;
     
+    /// isCommutative - This is set to true for a constraint that is commutative
+    /// with the next operand.
+    bool isCommutative;
+    
     /// Code - The constraint code, either the register name (in braces) or the
     /// constraint letter/number.
     std::vector<std::string> Codes;






More information about the llvm-commits mailing list