reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
82 Constant *i1 = ConstantInt::getFalse(Ctx); 83 Constant *i8 = ConstantInt::get(Type::getInt8Ty(Ctx), 3); 84 Constant *i16 = ConstantInt::get(Type::getInt16Ty(Ctx), 1 << 15); 85 Constant *i32 = ConstantInt::get(Type::getInt32Ty(Ctx), 0); 86 Constant *i64 = ConstantInt::get(Type::getInt64Ty(Ctx), 88 Constant *f16 = ConstantFP::getInfinity(Type::getHalfTy(Ctx)); 89 Constant *f32 = ConstantFP::get(Type::getFloatTy(Ctx), 0.0); 90 Constant *f64 = ConstantFP::get(Type::getDoubleTy(Ctx), 123.45); 92 ConstantStruct::get(StructType::create(Ctx, "OpaqueStruct"));