Skip to content

Commit

Permalink
Update INTEGER.c
Browse files Browse the repository at this point in the history
An overkill, perhaps, providing workaround for GCC compiler bug
  • Loading branch information
mouse07410 committed Apr 2, 2024
1 parent cec075f commit 1e6d1d4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions skeletons/INTEGER.c
Original file line number Diff line number Diff line change
Expand Up @@ -469,12 +469,12 @@ asn_uint642INTEGER(INTEGER_t *st, uint64_t value) {

int
asn_int642INTEGER(INTEGER_t *st, int64_t value) {
uint8_t *buf, *bp;
uint8_t *p;
uint8_t *pstart;
uint8_t *pend1;
volatile uint8_t *buf, *bp;
volatile uint8_t *p;
volatile uint8_t *pstart;
volatile uint8_t *pend1;
int littleEndian = 1; /* Run-time detection */
int add;
volatile int add;

if(!st) {
errno = EINVAL;
Expand Down

0 comments on commit 1e6d1d4

Please sign in to comment.