aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Charytoniuk <adam.charytoniuk@arm.com>2018-03-26 16:28:31 +0100
committerAnthony Barbier <Anthony.barbier@arm.com>2018-03-26 16:28:31 +0100
commit3dd034f2356319ee1cff6bcad5c58ed8611ae26e (patch)
tree18a704d034631185d9115da24104100c8dca53f7
parentc3f34a43ffb5d52ee4a4e9f7b1bf4c6c002aeebb (diff)
downloadComputeLibrary-3dd034f2356319ee1cff6bcad5c58ed8611ae26e.tar.gz
Bugfix: fixing trivial typo in enum value definition for A53. (#394)
-rw-r--r--arm_compute/core/CPP/CPPTypes.h2
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),