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;



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to