Searched defs:FieldValue (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGExprConstant.cpp173 llvm::APInt FieldValue = CI->getValue(); local
175 // Promote the size of FieldValue if necessary
179 if (FieldSize > FieldValue.getBitWidth())
180 FieldValue = FieldValue.zext(FieldSize);
182 // Truncate the size of FieldValue to the bit field size.
183 if (FieldSize < FieldValue.getBitWidth())
184 FieldValue = FieldValue.trunc(FieldSize);
195 BitsInPreviousByte >= FieldValue
478 const APValue &FieldValue = local
[all...]

Completed in 159 milliseconds