Fix space issues

This commit is contained in:
Cary R 2021-01-30 00:47:16 -08:00
parent a446c34d10
commit a73357ec72
3 changed files with 4 additions and 5 deletions

View File

@ -3003,7 +3003,7 @@ NetExpr* PECallFunction::elaborate_expr_method_(Design*des, NetScope*scope,
const index_component_t&use_index = search_results.path_item.index.back();
ivl_assert(*this, use_index.msb != 0);
ivl_assert(*this, use_index.lsb == 0);
NetExpr*mux = elab_and_eval(des, scope, use_index.msb, -1, false);
if (!mux)
return 0;

View File

@ -1,4 +1,3 @@
/*
* Copyright (c) 2012-2014 Stephen Williams (steve@icarus.com)
*
@ -22,7 +21,7 @@
# include "netscalar.h"
# include "netvector.h"
ivl_type_t make_ivl_type(ivl_variable_type_t vt,
ivl_type_t make_ivl_type(ivl_variable_type_t vt,
const std::vector<netrange_t>&packed_dimensions,
bool signed_flag, bool isint_flag)
{

View File

@ -1,7 +1,7 @@
#ifndef IVL_nettypes_H
#define IVL_nettypes_H
/*
* Copyright (c) 2012-2014 Stephen Williams (steve@icarus.com)
* Copyright (c) 2012-2021 Stephen Williams (steve@icarus.com)
*
* This source code is free software; you can redistribute it
* and/or modify it in source code form under the terms of the GNU
@ -62,7 +62,7 @@ class ivl_type_s {
/*
* Convenience functions for making ivl_type_t objects from various inputs.
*/
extern ivl_type_t make_ivl_type(ivl_variable_type_t vt,
extern ivl_type_t make_ivl_type(ivl_variable_type_t vt,
const std::vector<netrange_t>&packed_dimensions,
bool signed_flag =false, bool isint_flag =false);