aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Arsenault <Matthew.Arsenault@amd.com>2018-08-16 20:19:47 +0000
committerMatt Arsenault <Matthew.Arsenault@amd.com>2018-08-16 20:19:47 +0000
commit8c81318841628e3d3ae9970de7329a6ad0c06ec1 (patch)
tree6d3d07bf4259dd7f842f6dde83efddb4a2d44682
parent2da9132cde78a9658d79781c4f28dcdaed1bba91 (diff)
AMDGPU: Correct errors in device tablelinaro-local/ci/llvm-kernel-aarch64-good
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@339934 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Basic/Targets/AMDGPU.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Basic/Targets/AMDGPU.h b/lib/Basic/Targets/AMDGPU.h
index 9cfd84017f..10ff716b68 100644
--- a/lib/Basic/Targets/AMDGPU.h
+++ b/lib/Basic/Targets/AMDGPU.h
@@ -125,7 +125,7 @@ class LLVM_LIBRARY_VISIBILITY AMDGPUTargetInfo final : public TargetInfo {
{{"sumo"}, {"sumo"}, GK_SUMO, false, false, false, false, false, false},
{{"sumo2"}, {"sumo"}, GK_SUMO, false, false, false, false, false, false},
{{"barts"}, {"barts"}, GK_BARTS, false, false, false, false, false, false},
- {{"caicos"}, {"caicos"}, GK_BARTS, false, false, false, false, false, false},
+ {{"caicos"}, {"caicos"}, GK_CAICOS, false, false, false, false, false, false},
{{"aruba"}, {"cayman"}, GK_CAYMAN, true, false, false, false, false, false},
{{"cayman"}, {"cayman"}, GK_CAYMAN, true, false, false, false, false, false},
{{"turks"}, {"turks"}, GK_TURKS, false, false, false, false, false, false},
@@ -163,7 +163,7 @@ class LLVM_LIBRARY_VISIBILITY AMDGPUTargetInfo final : public TargetInfo {
{{"gfx810"}, {"gfx810"}, GK_GFX810, true, false, true, true, true, true},
{{"stoney"}, {"gfx810"}, GK_GFX810, true, false, true, true, true, true},
{{"gfx900"}, {"gfx900"}, GK_GFX900, true, true, true, true, true, true},
- {{"gfx902"}, {"gfx902"}, GK_GFX900, true, true, true, true, true, true},
+ {{"gfx902"}, {"gfx902"}, GK_GFX902, true, true, true, true, true, true},
{{"gfx904"}, {"gfx904"}, GK_GFX904, true, true, true, true, true, true},
{{"gfx906"}, {"gfx906"}, GK_GFX906, true, true, true, true, true, true},
};