[cfe-commits] r46752 - /cfe/trunk/include/clang/Basic/TargetInfo.h

Anders Carlsson andersca at mac.com
Tue Feb 5 09:26:37 PST 2008


Author: andersca
Date: Tue Feb  5 11:26:36 2008
New Revision: 46752

URL: http://llvm.org/viewvc/llvm-project?rev=46752&view=rev
Log:
Use correct flag value.

Modified:
    cfe/trunk/include/clang/Basic/TargetInfo.h

Modified: cfe/trunk/include/clang/Basic/TargetInfo.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/TargetInfo.h?rev=46752&r1=46751&r2=46752&view=diff

==============================================================================
--- cfe/trunk/include/clang/Basic/TargetInfo.h (original)
+++ cfe/trunk/include/clang/Basic/TargetInfo.h Tue Feb  5 11:26:36 2008
@@ -218,7 +218,7 @@
     CI_None = 0x00,
     CI_AllowsMemory = 0x01,
     CI_AllowsRegister = 0x02,
-    CI_ReadWrite = 0x03
+    CI_ReadWrite = 0x04
   };
 
   // validateOutputConstraint, validateInputConstraint - Checks that





More information about the cfe-commits mailing list