forked from OSchip/llvm-project
parent
def4229973
commit
113b8c1007
|
@ -75,6 +75,9 @@ static struct custom_operations generic_value_ops = {
|
|||
custom_hash_default,
|
||||
custom_serialize_default,
|
||||
custom_deserialize_default
|
||||
#ifdef custom_compare_ext_default
|
||||
, custom_compare_ext_default
|
||||
#endif
|
||||
};
|
||||
|
||||
static value alloc_generic_value(LLVMGenericValueRef Ref) {
|
||||
|
|
|
@ -1277,6 +1277,9 @@ static struct custom_operations builder_ops = {
|
|||
custom_hash_default,
|
||||
custom_serialize_default,
|
||||
custom_deserialize_default
|
||||
#ifdef custom_compare_ext_default
|
||||
, custom_compare_ext_default
|
||||
#endif
|
||||
};
|
||||
|
||||
static value alloc_builder(LLVMBuilderRef B) {
|
||||
|
|
Loading…
Reference in New Issue