Skip to content

Commit

Permalink
AMDGPU: Move run and check lines around to match processor order in A…
Browse files Browse the repository at this point in the history
…MDGPU.h

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@326278 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
kzhuravl committed Feb 28, 2018
1 parent 995d81d commit 8efaf84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Driver/amdgpu-mcpu.cl
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
// RUN: %clang -### -target r600 -mcpu=sumo2 %s 2>&1 | FileCheck --check-prefix=SUMO %s
// RUN: %clang -### -target r600 -mcpu=barts %s 2>&1 | FileCheck --check-prefix=BARTS %s
// RUN: %clang -### -target r600 -mcpu=caicos %s 2>&1 | FileCheck --check-prefix=CAICOS %s
// RUN: %clang -### -target r600 -mcpu=turks %s 2>&1 | FileCheck --check-prefix=TURKS %s
// RUN: %clang -### -target r600 -mcpu=aruba %s 2>&1 | FileCheck --check-prefix=CAYMAN %s
// RUN: %clang -### -target r600 -mcpu=cayman %s 2>&1 | FileCheck --check-prefix=CAYMAN %s
// RUN: %clang -### -target r600 -mcpu=turks %s 2>&1 | FileCheck --check-prefix=TURKS %s

// R600: "-target-cpu" "r600"
// R630: "-target-cpu" "r630"
Expand All @@ -45,8 +45,8 @@
// SUMO: "-target-cpu" "sumo"
// BARTS: "-target-cpu" "barts"
// CAICOS: "-target-cpu" "caicos"
// TURKS: "-target-cpu" "turks"
// CAYMAN: "-target-cpu" "cayman"
// TURKS: "-target-cpu" "turks"

//
// AMDGCN-based processors.
Expand Down

0 comments on commit 8efaf84

Please sign in to comment.