V0.9: Fix spacing issues
Fix space before tab and space/tab before EOL.
This commit is contained in:
parent
b6223f39c9
commit
337eb3f8e7
|
|
@ -35,4 +35,3 @@ void prune_wait_for_0(stmt_container *container);
|
||||||
void require_support_function(support_function_t f);
|
void require_support_function(support_function_t f);
|
||||||
|
|
||||||
#endif /* #ifndef INC_VHDL_TARGET_H */
|
#endif /* #ifndef INC_VHDL_TARGET_H */
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -197,7 +197,6 @@ void sdf_iopath_delays(int vpi_edge, const char*src, const char*dst,
|
||||||
delay_vals[idx].real = 0.0;
|
delay_vals[idx].real = 0.0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
vpi_put_delays(path, &delays);
|
vpi_put_delays(path, &delays);
|
||||||
|
|
|
||||||
|
|
@ -1468,7 +1468,6 @@ void vpip_array_word_change(struct __vpiCallback*cb, vpiHandle obj)
|
||||||
|
|
||||||
void vpip_array_change(struct __vpiCallback*cb, vpiHandle obj)
|
void vpip_array_change(struct __vpiCallback*cb, vpiHandle obj)
|
||||||
{
|
{
|
||||||
|
|
||||||
struct __vpiArray*arr = ARRAY_HANDLE(obj);
|
struct __vpiArray*arr = ARRAY_HANDLE(obj);
|
||||||
cb->extra_data = -1; // This is a callback for every element.
|
cb->extra_data = -1; // This is a callback for every element.
|
||||||
cb->next = arr->vpi_callbacks;
|
cb->next = arr->vpi_callbacks;
|
||||||
|
|
|
||||||
|
|
@ -62,7 +62,6 @@ typedef void*vvp_context_item_t;
|
||||||
|
|
||||||
inline vvp_context_t vvp_allocate_context(unsigned nitem)
|
inline vvp_context_t vvp_allocate_context(unsigned nitem)
|
||||||
{
|
{
|
||||||
|
|
||||||
return (vvp_context_t)malloc((2 + nitem) * sizeof(void*));
|
return (vvp_context_t)malloc((2 + nitem) * sizeof(void*));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue