1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Add a new CCValAssign LocInfo value, and a comment explaining what it

should be used for.

llvm-svn: 107661
This commit is contained in:
Dan Gohman 2010-07-06 15:35:06 +00:00
parent c88c36181f
commit 66125b8df0

View File

@ -35,6 +35,9 @@ public:
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.
};