51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
};
template<>
struct TypeWrapperTraits< APSInt >
{
static auto typeId() { return "FixedInt"_sid; }
};
template<>
struct TypeWrapperTraits< ptr< cir::CFG > >
{
static auto typeId() { return "CFG"_sid; }
};
|
>
>
>
>
>
>
|
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
};
template<>
struct TypeWrapperTraits< APSInt >
{
static auto typeId() { return "FixedInt"_sid; }
};
template<>
struct TypeWrapperTraits< ptr< TypePredicates > >
{
static auto typeId() { return "TypePredicates"_sid; }
};
template<>
struct TypeWrapperTraits< ptr< cir::CFG > >
{
static auto typeId() { return "CFG"_sid; }
};
|