summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--llvm/include/llvm/IR/Intrinsics.td2
-rw-r--r--llvm/include/llvm/IR/IntrinsicsAMDGPU.td (renamed from llvm/include/llvm/IR/IntrinsicsR600.td)0
-rw-r--r--llvm/test/Transforms/CodeGenPrepare/AMDGPU/lit.local.cfg3
-rw-r--r--llvm/test/Transforms/CodeGenPrepare/AMDGPU/no-sink-addrspacecast.ll (renamed from llvm/test/Transforms/CodeGenPrepare/R600/no-sink-addrspacecast.ll)0
-rw-r--r--llvm/test/Transforms/CodeGenPrepare/R600/lit.local.cfg3
-rw-r--r--llvm/test/Transforms/LoopIdiom/AMDGPU/lit.local.cfg3
-rw-r--r--llvm/test/Transforms/LoopIdiom/AMDGPU/popcnt.ll (renamed from llvm/test/Transforms/LoopIdiom/R600/popcnt.ll)0
-rw-r--r--llvm/test/Transforms/LoopIdiom/R600/lit.local.cfg3
-rw-r--r--llvm/test/Transforms/SLPVectorizer/AMDGPU/lit.local.cfg3
-rw-r--r--llvm/test/Transforms/SLPVectorizer/AMDGPU/simplebb.ll (renamed from llvm/test/Transforms/SLPVectorizer/R600/simplebb.ll)0
-rw-r--r--llvm/test/Transforms/SLPVectorizer/R600/lit.local.cfg3
-rw-r--r--llvm/test/Transforms/SeparateConstOffsetFromGEP/AMDGPU/lit.local.cfg3
-rw-r--r--llvm/test/Transforms/SeparateConstOffsetFromGEP/AMDGPU/split-gep-and-gvn-addrspace-addressing-modes.ll (renamed from llvm/test/Transforms/SeparateConstOffsetFromGEP/R600/split-gep-and-gvn-addrspace-addressing-modes.ll)0
-rw-r--r--llvm/test/Transforms/SeparateConstOffsetFromGEP/R600/lit.local.cfg3
-rw-r--r--llvm/test/Transforms/SimplifyCFG/AMDGPU/cttz-ctlz.ll (renamed from llvm/test/Transforms/SimplifyCFG/R600/cttz-ctlz.ll)0
-rw-r--r--llvm/test/Transforms/SimplifyCFG/AMDGPU/lit.local.cfg2
-rw-r--r--llvm/test/Transforms/SimplifyCFG/R600/lit.local.cfg2
-rw-r--r--llvm/test/Transforms/StraightLineStrengthReduce/AMDGPU/lit.local.cfg2
-rw-r--r--llvm/test/Transforms/StraightLineStrengthReduce/AMDGPU/reassociate-geps-and-slsr-addrspace.ll (renamed from llvm/test/Transforms/StraightLineStrengthReduce/R600/reassociate-geps-and-slsr-addrspace.ll)0
-rw-r--r--llvm/test/Transforms/StraightLineStrengthReduce/R600/lit.local.cfg2
20 files changed, 17 insertions, 17 deletions
diff --git a/llvm/include/llvm/IR/Intrinsics.td b/llvm/include/llvm/IR/Intrinsics.td
index 152c7fcfcca..e6f6d0ffe8b 100644
--- a/llvm/include/llvm/IR/Intrinsics.td
+++ b/llvm/include/llvm/IR/Intrinsics.td
@@ -635,6 +635,6 @@ include "llvm/IR/IntrinsicsXCore.td"
include "llvm/IR/IntrinsicsHexagon.td"
include "llvm/IR/IntrinsicsNVVM.td"
include "llvm/IR/IntrinsicsMips.td"
-include "llvm/IR/IntrinsicsR600.td"
+include "llvm/IR/IntrinsicsAMDGPU.td"
include "llvm/IR/IntrinsicsBPF.td"
include "llvm/IR/IntrinsicsSystemZ.td"
diff --git a/llvm/include/llvm/IR/IntrinsicsR600.td b/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
index 50556673822..50556673822 100644
--- a/llvm/include/llvm/IR/IntrinsicsR600.td
+++ b/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
diff --git a/llvm/test/Transforms/CodeGenPrepare/AMDGPU/lit.local.cfg b/llvm/test/Transforms/CodeGenPrepare/AMDGPU/lit.local.cfg
new file mode 100644
index 00000000000..6baccf05fff
--- /dev/null
+++ b/llvm/test/Transforms/CodeGenPrepare/AMDGPU/lit.local.cfg
@@ -0,0 +1,3 @@
+if not 'AMDGPU' in config.root.targets:
+ config.unsupported = True
+
diff --git a/llvm/test/Transforms/CodeGenPrepare/R600/no-sink-addrspacecast.ll b/llvm/test/Transforms/CodeGenPrepare/AMDGPU/no-sink-addrspacecast.ll
index f6f898fae21..f6f898fae21 100644
--- a/llvm/test/Transforms/CodeGenPrepare/R600/no-sink-addrspacecast.ll
+++ b/llvm/test/Transforms/CodeGenPrepare/AMDGPU/no-sink-addrspacecast.ll
diff --git a/llvm/test/Transforms/CodeGenPrepare/R600/lit.local.cfg b/llvm/test/Transforms/CodeGenPrepare/R600/lit.local.cfg
deleted file mode 100644
index 4086e8d681c..00000000000
--- a/llvm/test/Transforms/CodeGenPrepare/R600/lit.local.cfg
+++ /dev/null
@@ -1,3 +0,0 @@
-if not 'R600' in config.root.targets:
- config.unsupported = True
-
diff --git a/llvm/test/Transforms/LoopIdiom/AMDGPU/lit.local.cfg b/llvm/test/Transforms/LoopIdiom/AMDGPU/lit.local.cfg
new file mode 100644
index 00000000000..6baccf05fff
--- /dev/null
+++ b/llvm/test/Transforms/LoopIdiom/AMDGPU/lit.local.cfg
@@ -0,0 +1,3 @@
+if not 'AMDGPU' in config.root.targets:
+ config.unsupported = True
+
diff --git a/llvm/test/Transforms/LoopIdiom/R600/popcnt.ll b/llvm/test/Transforms/LoopIdiom/AMDGPU/popcnt.ll
index e4301bbb06d..e4301bbb06d 100644
--- a/llvm/test/Transforms/LoopIdiom/R600/popcnt.ll
+++ b/llvm/test/Transforms/LoopIdiom/AMDGPU/popcnt.ll
diff --git a/llvm/test/Transforms/LoopIdiom/R600/lit.local.cfg b/llvm/test/Transforms/LoopIdiom/R600/lit.local.cfg
deleted file mode 100644
index 4086e8d681c..00000000000
--- a/llvm/test/Transforms/LoopIdiom/R600/lit.local.cfg
+++ /dev/null
@@ -1,3 +0,0 @@
-if not 'R600' in config.root.targets:
- config.unsupported = True
-
diff --git a/llvm/test/Transforms/SLPVectorizer/AMDGPU/lit.local.cfg b/llvm/test/Transforms/SLPVectorizer/AMDGPU/lit.local.cfg
new file mode 100644
index 00000000000..6baccf05fff
--- /dev/null
+++ b/llvm/test/Transforms/SLPVectorizer/AMDGPU/lit.local.cfg
@@ -0,0 +1,3 @@
+if not 'AMDGPU' in config.root.targets:
+ config.unsupported = True
+
diff --git a/llvm/test/Transforms/SLPVectorizer/R600/simplebb.ll b/llvm/test/Transforms/SLPVectorizer/AMDGPU/simplebb.ll
index 9ed86f88147..9ed86f88147 100644
--- a/llvm/test/Transforms/SLPVectorizer/R600/simplebb.ll
+++ b/llvm/test/Transforms/SLPVectorizer/AMDGPU/simplebb.ll
diff --git a/llvm/test/Transforms/SLPVectorizer/R600/lit.local.cfg b/llvm/test/Transforms/SLPVectorizer/R600/lit.local.cfg
deleted file mode 100644
index 4086e8d681c..00000000000
--- a/llvm/test/Transforms/SLPVectorizer/R600/lit.local.cfg
+++ /dev/null
@@ -1,3 +0,0 @@
-if not 'R600' in config.root.targets:
- config.unsupported = True
-
diff --git a/llvm/test/Transforms/SeparateConstOffsetFromGEP/AMDGPU/lit.local.cfg b/llvm/test/Transforms/SeparateConstOffsetFromGEP/AMDGPU/lit.local.cfg
new file mode 100644
index 00000000000..6baccf05fff
--- /dev/null
+++ b/llvm/test/Transforms/SeparateConstOffsetFromGEP/AMDGPU/lit.local.cfg
@@ -0,0 +1,3 @@
+if not 'AMDGPU' in config.root.targets:
+ config.unsupported = True
+
diff --git a/llvm/test/Transforms/SeparateConstOffsetFromGEP/R600/split-gep-and-gvn-addrspace-addressing-modes.ll b/llvm/test/Transforms/SeparateConstOffsetFromGEP/AMDGPU/split-gep-and-gvn-addrspace-addressing-modes.ll
index 527634db0f5..527634db0f5 100644
--- a/llvm/test/Transforms/SeparateConstOffsetFromGEP/R600/split-gep-and-gvn-addrspace-addressing-modes.ll
+++ b/llvm/test/Transforms/SeparateConstOffsetFromGEP/AMDGPU/split-gep-and-gvn-addrspace-addressing-modes.ll
diff --git a/llvm/test/Transforms/SeparateConstOffsetFromGEP/R600/lit.local.cfg b/llvm/test/Transforms/SeparateConstOffsetFromGEP/R600/lit.local.cfg
deleted file mode 100644
index 4086e8d681c..00000000000
--- a/llvm/test/Transforms/SeparateConstOffsetFromGEP/R600/lit.local.cfg
+++ /dev/null
@@ -1,3 +0,0 @@
-if not 'R600' in config.root.targets:
- config.unsupported = True
-
diff --git a/llvm/test/Transforms/SimplifyCFG/R600/cttz-ctlz.ll b/llvm/test/Transforms/SimplifyCFG/AMDGPU/cttz-ctlz.ll
index 5b279949464..5b279949464 100644
--- a/llvm/test/Transforms/SimplifyCFG/R600/cttz-ctlz.ll
+++ b/llvm/test/Transforms/SimplifyCFG/AMDGPU/cttz-ctlz.ll
diff --git a/llvm/test/Transforms/SimplifyCFG/AMDGPU/lit.local.cfg b/llvm/test/Transforms/SimplifyCFG/AMDGPU/lit.local.cfg
new file mode 100644
index 00000000000..2a665f06be7
--- /dev/null
+++ b/llvm/test/Transforms/SimplifyCFG/AMDGPU/lit.local.cfg
@@ -0,0 +1,2 @@
+if not 'AMDGPU' in config.root.targets:
+ config.unsupported = True
diff --git a/llvm/test/Transforms/SimplifyCFG/R600/lit.local.cfg b/llvm/test/Transforms/SimplifyCFG/R600/lit.local.cfg
deleted file mode 100644
index ad9ce2541ef..00000000000
--- a/llvm/test/Transforms/SimplifyCFG/R600/lit.local.cfg
+++ /dev/null
@@ -1,2 +0,0 @@
-if not 'R600' in config.root.targets:
- config.unsupported = True
diff --git a/llvm/test/Transforms/StraightLineStrengthReduce/AMDGPU/lit.local.cfg b/llvm/test/Transforms/StraightLineStrengthReduce/AMDGPU/lit.local.cfg
new file mode 100644
index 00000000000..2a665f06be7
--- /dev/null
+++ b/llvm/test/Transforms/StraightLineStrengthReduce/AMDGPU/lit.local.cfg
@@ -0,0 +1,2 @@
+if not 'AMDGPU' in config.root.targets:
+ config.unsupported = True
diff --git a/llvm/test/Transforms/StraightLineStrengthReduce/R600/reassociate-geps-and-slsr-addrspace.ll b/llvm/test/Transforms/StraightLineStrengthReduce/AMDGPU/reassociate-geps-and-slsr-addrspace.ll
index 278250a9c80..278250a9c80 100644
--- a/llvm/test/Transforms/StraightLineStrengthReduce/R600/reassociate-geps-and-slsr-addrspace.ll
+++ b/llvm/test/Transforms/StraightLineStrengthReduce/AMDGPU/reassociate-geps-and-slsr-addrspace.ll
diff --git a/llvm/test/Transforms/StraightLineStrengthReduce/R600/lit.local.cfg b/llvm/test/Transforms/StraightLineStrengthReduce/R600/lit.local.cfg
deleted file mode 100644
index ad9ce2541ef..00000000000
--- a/llvm/test/Transforms/StraightLineStrengthReduce/R600/lit.local.cfg
+++ /dev/null
@@ -1,2 +0,0 @@
-if not 'R600' in config.root.targets:
- config.unsupported = True
OpenPOWER on IntegriCloud