Skip to content

Commit c8c3282

Browse files
author
git apple-llvm automerger
committed
Merge commit 'b4312940d855' from apple/main into swift/next
2 parents e900f7c + b431294 commit c8c3282

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Support/TargetParser.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ struct GPUInfo {
3030
unsigned Features;
3131
};
3232

33-
constexpr GPUInfo R600GPUs[26] = {
33+
constexpr GPUInfo R600GPUs[] = {
3434
// Name Canonical Kind Features
3535
// Name
3636
{{"r600"}, {"r600"}, GK_R600, FEATURE_NONE },
@@ -63,7 +63,7 @@ constexpr GPUInfo R600GPUs[26] = {
6363

6464
// This table should be sorted by the value of GPUKind
6565
// Don't bother listing the implicitly true features
66-
constexpr GPUInfo AMDGCNGPUs[44] = {
66+
constexpr GPUInfo AMDGCNGPUs[] = {
6767
// Name Canonical Kind Features
6868
// Name
6969
{{"gfx600"}, {"gfx600"}, GK_GFX600, FEATURE_FAST_FMA_F32},

0 commit comments

Comments
 (0)