Unverified Commit 1e6d1d4a authored by Mouse's avatar Mouse Committed by GitHub

Update INTEGER.c

An overkill, perhaps, providing workaround for GCC compiler bug
parent cec075f8
...@@ -469,12 +469,12 @@ asn_uint642INTEGER(INTEGER_t *st, uint64_t value) { ...@@ -469,12 +469,12 @@ asn_uint642INTEGER(INTEGER_t *st, uint64_t value) {
int int
asn_int642INTEGER(INTEGER_t *st, int64_t value) { asn_int642INTEGER(INTEGER_t *st, int64_t value) {
uint8_t *buf, *bp; volatile uint8_t *buf, *bp;
uint8_t *p; volatile uint8_t *p;
uint8_t *pstart; volatile uint8_t *pstart;
uint8_t *pend1; volatile uint8_t *pend1;
int littleEndian = 1; /* Run-time detection */ int littleEndian = 1; /* Run-time detection */
int add; volatile int add;
if(!st) { if(!st) {
errno = EINVAL; errno = EINVAL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment