Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ void stdlib_base_float64_get_high_word( const double x, uint32_t *high );
#include <stdio.h>

int main( void ) {
double x[] = { 3.14, -3.14, 0.0, 0.0/0.0 };
const double x[] = { 3.14, -3.14, 0.0, 0.0/0.0 };

uint32_t high;
int i;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <stdio.h>

int main( void ) {
double x[] = { 3.14, -3.14, 0.0, 0.0/0.0 };
const double x[] = { 3.14, -3.14, 0.0, 0.0/0.0 };

uint32_t high;
int i;
Expand Down