reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/CodeGen/CGBuiltin.cpp
  512     Signed |= Type.Signed;
  521     unsigned MinWidth = Type.Width + (Signed && !Type.Signed);
 1303          Op1Info.Signed != Op2Info.Signed;
 1303          Op1Info.Signed != Op2Info.Signed;
 1319   const clang::Expr *SignedOp = Op1Info.Signed ? Op1 : Op2;
 1320   const clang::Expr *UnsignedOp = Op1Info.Signed ? Op2 : Op1;
 1323   unsigned SignedOpWidth = Op1Info.Signed ? Op1Info.Width : Op2Info.Width;
 1324   unsigned UnsignedOpWidth = Op1Info.Signed ? Op2Info.Width : Op1Info.Width;
 1351   if (ResultInfo.Signed) {
 3248       IntrinsicId = EncompassingInfo.Signed
 3253       IntrinsicId = EncompassingInfo.Signed
 3258       IntrinsicId = EncompassingInfo.Signed
 3269     Left = Builder.CreateIntCast(Left, EncompassingLLVMTy, LeftInfo.Signed);
 3270     Right = Builder.CreateIntCast(Right, EncompassingLLVMTy, RightInfo.Signed);
 3284           ResultTrunc, EncompassingLLVMTy, ResultInfo.Signed);