Skip to content

Commit 3da1ffe

Browse files
committed
do not reorder includes in immediate_aarch64.cpp
1 parent 69c89f7 commit 3da1ffe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/hotspot/cpu/aarch64/immediate_aarch64.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
*
2424
*/
2525

26+
#include <stdint.h> // do not reorder
27+
#include <stdlib.h> // do not reorder
28+
2629
#include "immediate_aarch64.hpp"
2730
#include "metaprogramming/primitiveConversions.hpp"
2831
#include "utilities/globalDefinitions.hpp"
2932

30-
#include <stdint.h>
31-
#include <stdlib.h>
32-
3333
// there are at most 2^13 possible logical immediate encodings
3434
// however, some combinations of immr and imms are invalid
3535
static const unsigned LI_TABLE_SIZE = (1 << 13);

0 commit comments

Comments
 (0)