[cfe-commits] r91540 - /cfe/trunk/lib/Basic/TargetInfo.cpp

Nuno Lopes nunoplopes at sapo.pt
Wed Dec 16 06:28:21 PST 2009


Author: nlopes
Date: Wed Dec 16 08:28:21 2009
New Revision: 91540

URL: http://llvm.org/viewvc/llvm-project?rev=91540&view=rev
Log:
fix PR5689: add support for 'o' and 'V' asm input operands

Modified:
    cfe/trunk/lib/Basic/TargetInfo.cpp

Modified: cfe/trunk/lib/Basic/TargetInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Basic/TargetInfo.cpp?rev=91540&r1=91539&r2=91540&view=diff

==============================================================================
--- cfe/trunk/lib/Basic/TargetInfo.cpp (original)
+++ cfe/trunk/lib/Basic/TargetInfo.cpp Wed Dec 16 08:28:21 2009
@@ -360,6 +360,8 @@
       Info.setAllowsRegister();
       break;
     case 'm': // memory operand.
+    case 'o': // offsettable memory operand
+    case 'V': // non-offsettable memory operand
       Info.setAllowsMemory();
       break;
     case 'g': // general register, memory operand or immediate integer.





More information about the cfe-commits mailing list