Skip to content

Commit

Permalink
Fix typo of AARCH64 processor type enum
Browse files Browse the repository at this point in the history
Signed-off-by: Akira Saitoh <saiaki@jp.ibm.com>
  • Loading branch information
Akira Saitoh committed Apr 19, 2021
1 parent 0f967b7 commit d8fc029
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include_core/omrport.h
Original file line number Diff line number Diff line change
Expand Up @@ -1339,8 +1339,8 @@ typedef enum OMRProcessorArchitecture {
OMR_PROCESSOR_ARM_LAST = OMR_PROCESSOR_ARM_V7,

// ARM64 / AARCH64 Processors
OMR_PROCESSOR_ARM64_FISRT,
OMR_PROCESSOR_ARM64_UNKNOWN = OMR_PROCESSOR_ARM64_FISRT,
OMR_PROCESSOR_ARM64_FIRST,
OMR_PROCESSOR_ARM64_UNKNOWN = OMR_PROCESSOR_ARM64_FIRST,
OMR_PROCESSOR_ARM64_V8_A,
OMR_PROCESSOR_ARM64_LAST = OMR_PROCESSOR_ARM64_V8_A,

Expand Down

0 comments on commit d8fc029

Please sign in to comment.