Skip to content
Snippets Groups Projects
Commit ca3bde9f authored by mattijs's avatar mattijs
Browse files

BUG: labelBits: allow negative labels

parent c6083318
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ SourceFiles
#define labelBits_H
#include "label.H"
#include "uLabel.H"
//#include "uLabel.H"
#include "direction.H"
#include "error.H"
......@@ -55,15 +55,17 @@ class labelBits
label data_;
inline static label pack(const uLabel val, const direction bits)
inline static label pack(const label val, const direction bits)
{
# ifdef FULLDEBUG
if (bits > 7 || (((val<<3)>>3) != val))
{
FatalErrorIn
(
"labelBits::pack(const uLabel, const direction)"
"labelBits::pack(const label, const direction)"
) << "Direction " << bits << " outside range 0..7"
<< " or value " << val << " negative or larger than "
<< label(8*sizeof(label)-3) << " bit representation"
<< abort(FatalError);
}
# endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment