diff options
author | Adam Charytoniuk <adam.charytoniuk@arm.com> | 2018-03-26 16:28:31 +0100 |
---|---|---|
committer | Anthony Barbier <Anthony.barbier@arm.com> | 2018-03-26 16:28:31 +0100 |
commit | 3dd034f2356319ee1cff6bcad5c58ed8611ae26e (patch) | |
tree | 18a704d034631185d9115da24104100c8dca53f7 /arm_compute | |
parent | c3f34a43ffb5d52ee4a4e9f7b1bf4c6c002aeebb (diff) | |
download | armcl-3dd034f2356319ee1cff6bcad5c58ed8611ae26e.tar.gz armcl-3dd034f2356319ee1cff6bcad5c58ed8611ae26e.tar.bz2 armcl-3dd034f2356319ee1cff6bcad5c58ed8611ae26e.zip |
Bugfix: fixing trivial typo in enum value definition for A53. (#394)
Diffstat (limited to 'arm_compute')
-rw-r--r-- | arm_compute/core/CPP/CPPTypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arm_compute/core/CPP/CPPTypes.h b/arm_compute/core/CPP/CPPTypes.h index cff49db0a..1e5439146 100644 --- a/arm_compute/core/CPP/CPPTypes.h +++ b/arm_compute/core/CPP/CPPTypes.h @@ -39,7 +39,7 @@ enum class CPUTarget A5x = 0x0050, DOT = 0x1000, - A53 = (ARMV8 | A7x | 0x3), + A53 = (ARMV8 | A5x | 0x3), A55 = (ARMV8_2 | A5x | 0x5), A55_DOT = (A55 | DOT), A72 = (ARMV8 | A7x | 0x2), |