Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
do not reorder certain includes
  • Loading branch information
dougxc committed Mar 25, 2025
commit a76d4f98c7e6074b4745c1c1791fe605e352d79f
4 changes: 2 additions & 2 deletions src/hotspot/cpu/aarch64/immediate_aarch64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
*
*/

#include <stdlib.h>
#include <stdint.h>
#include <stdlib.h> // do not reorder
#include <stdint.h> // do not reorder

#include "immediate_aarch64.hpp"
#include "metaprogramming/primitiveConversions.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/os/windows/systemMemoryBarrier_windows.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

#include "systemMemoryBarrier_windows.hpp"

#include <windows.h>
#include <windows.h> // do not reorder
#include <processthreadsapi.h>

bool WindowsSystemMemoryBarrier::initialize() {
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/adlc/archDesc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@


// archDesc.cpp - Internal format for architecture definition
#include <unordered_set>
#include <unordered_set> // do not reorder
#include "adlc.hpp"

static FILE *errfile = stderr;
Expand Down