[llvm-commits] [llvm] r107661 - /llvm/trunk/include/llvm/CodeGen/CallingConvLower.h

Dan Gohman gohman at apple.com
Tue Jul 6 08:35:07 PDT 2010


Author: djg
Date: Tue Jul  6 10:35:06 2010
New Revision: 107661

URL: http://llvm.org/viewvc/llvm-project?rev=107661&view=rev
Log:
Add a new CCValAssign LocInfo value, and a comment explaining what it
should be used for.

Modified:
    llvm/trunk/include/llvm/CodeGen/CallingConvLower.h

Modified: llvm/trunk/include/llvm/CodeGen/CallingConvLower.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/CallingConvLower.h?rev=107661&r1=107660&r2=107661&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/CallingConvLower.h (original)
+++ llvm/trunk/include/llvm/CodeGen/CallingConvLower.h Tue Jul  6 10:35:06 2010
@@ -35,6 +35,9 @@
     ZExt,   // The value is zero extended in the location.
     AExt,   // The value is extended with undefined upper bits.
     BCvt,   // The value is bit-converted in the location.
+    VExt,   // The value is vector-widened in the location.
+            // FIXME: Not implemented yet. Code that uses AExt to mean
+            // vector-widen should be fixed to use VExt instead.
     Indirect // The location contains pointer to the value.
     // TODO: a subset of the value is in the location.
   };





More information about the llvm-commits mailing list