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

Chris Lattner lattner at cs.uiuc.edu
Mon Feb 6 17:13:01 PST 2006



Changes in directory llvm/include/llvm:

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

fix an error compiling with -pedantic


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

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


Index: llvm/include/llvm/InlineAsm.h
diff -u llvm/include/llvm/InlineAsm.h:1.8 llvm/include/llvm/InlineAsm.h:1.9
--- llvm/include/llvm/InlineAsm.h:1.8	Wed Feb  1 18:23:12 2006
+++ llvm/include/llvm/InlineAsm.h	Mon Feb  6 19:12:49 2006
@@ -70,7 +70,7 @@
   enum ConstraintPrefix {
     isInput,            // 'x'
     isOutput,           // '=x'
-    isClobber,          // '~x'
+    isClobber           // '~x'
   };
   
   struct ConstraintInfo {






More information about the llvm-commits mailing list