AMDGPU: Fix some places missed in rename
authorMatt Arsenault <Matthew.Arsenault@amd.com>
Fri, 19 Jun 2015 17:39:03 +0000 (17:39 +0000)
committerMatt Arsenault <Matthew.Arsenault@amd.com>
Fri, 19 Jun 2015 17:39:03 +0000 (17:39 +0000)
llvm-svn: 240143

20 files changed:
llvm/include/llvm/IR/Intrinsics.td
llvm/include/llvm/IR/IntrinsicsAMDGPU.td [moved from llvm/include/llvm/IR/IntrinsicsR600.td with 100% similarity]
llvm/test/Transforms/CodeGenPrepare/AMDGPU/lit.local.cfg [new file with mode: 0644]
llvm/test/Transforms/CodeGenPrepare/AMDGPU/no-sink-addrspacecast.ll [moved from llvm/test/Transforms/CodeGenPrepare/R600/no-sink-addrspacecast.ll with 100% similarity]
llvm/test/Transforms/CodeGenPrepare/R600/lit.local.cfg [deleted file]
llvm/test/Transforms/LoopIdiom/AMDGPU/lit.local.cfg [new file with mode: 0644]
llvm/test/Transforms/LoopIdiom/AMDGPU/popcnt.ll [moved from llvm/test/Transforms/LoopIdiom/R600/popcnt.ll with 100% similarity]
llvm/test/Transforms/LoopIdiom/R600/lit.local.cfg [deleted file]
llvm/test/Transforms/SLPVectorizer/AMDGPU/lit.local.cfg [new file with mode: 0644]
llvm/test/Transforms/SLPVectorizer/AMDGPU/simplebb.ll [moved from llvm/test/Transforms/SLPVectorizer/R600/simplebb.ll with 100% similarity]
llvm/test/Transforms/SLPVectorizer/R600/lit.local.cfg [deleted file]
llvm/test/Transforms/SeparateConstOffsetFromGEP/AMDGPU/lit.local.cfg [new file with mode: 0644]
llvm/test/Transforms/SeparateConstOffsetFromGEP/AMDGPU/split-gep-and-gvn-addrspace-addressing-modes.ll [moved from llvm/test/Transforms/SeparateConstOffsetFromGEP/R600/split-gep-and-gvn-addrspace-addressing-modes.ll with 100% similarity]
llvm/test/Transforms/SeparateConstOffsetFromGEP/R600/lit.local.cfg [deleted file]
llvm/test/Transforms/SimplifyCFG/AMDGPU/cttz-ctlz.ll [moved from llvm/test/Transforms/SimplifyCFG/R600/cttz-ctlz.ll with 100% similarity]
llvm/test/Transforms/SimplifyCFG/AMDGPU/lit.local.cfg [new file with mode: 0644]
llvm/test/Transforms/SimplifyCFG/R600/lit.local.cfg [deleted file]
llvm/test/Transforms/StraightLineStrengthReduce/AMDGPU/lit.local.cfg [new file with mode: 0644]
llvm/test/Transforms/StraightLineStrengthReduce/AMDGPU/reassociate-geps-and-slsr-addrspace.ll [moved from llvm/test/Transforms/StraightLineStrengthReduce/R600/reassociate-geps-and-slsr-addrspace.ll with 100% similarity]
llvm/test/Transforms/StraightLineStrengthReduce/R600/lit.local.cfg [deleted file]

index 152c7fc..e6f6d0f 100644 (file)
@@ -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/test/Transforms/CodeGenPrepare/AMDGPU/lit.local.cfg b/llvm/test/Transforms/CodeGenPrepare/AMDGPU/lit.local.cfg
new file mode 100644 (file)
index 0000000..6baccf0
--- /dev/null
@@ -0,0 +1,3 @@
+if not 'AMDGPU' in config.root.targets:
+    config.unsupported = True
+
diff --git a/llvm/test/Transforms/CodeGenPrepare/R600/lit.local.cfg b/llvm/test/Transforms/CodeGenPrepare/R600/lit.local.cfg
deleted file mode 100644 (file)
index 4086e8d..0000000
+++ /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 (file)
index 0000000..6baccf0
--- /dev/null
@@ -0,0 +1,3 @@
+if not 'AMDGPU' in config.root.targets:
+    config.unsupported = True
+
diff --git a/llvm/test/Transforms/LoopIdiom/R600/lit.local.cfg b/llvm/test/Transforms/LoopIdiom/R600/lit.local.cfg
deleted file mode 100644 (file)
index 4086e8d..0000000
+++ /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 (file)
index 0000000..6baccf0
--- /dev/null
@@ -0,0 +1,3 @@
+if not 'AMDGPU' in config.root.targets:
+    config.unsupported = True
+
diff --git a/llvm/test/Transforms/SLPVectorizer/R600/lit.local.cfg b/llvm/test/Transforms/SLPVectorizer/R600/lit.local.cfg
deleted file mode 100644 (file)
index 4086e8d..0000000
+++ /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 (file)
index 0000000..6baccf0
--- /dev/null
@@ -0,0 +1,3 @@
+if not 'AMDGPU' in config.root.targets:
+    config.unsupported = True
+
diff --git a/llvm/test/Transforms/SeparateConstOffsetFromGEP/R600/lit.local.cfg b/llvm/test/Transforms/SeparateConstOffsetFromGEP/R600/lit.local.cfg
deleted file mode 100644 (file)
index 4086e8d..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-if not 'R600' in config.root.targets:
-    config.unsupported = True
-
diff --git a/llvm/test/Transforms/SimplifyCFG/AMDGPU/lit.local.cfg b/llvm/test/Transforms/SimplifyCFG/AMDGPU/lit.local.cfg
new file mode 100644 (file)
index 0000000..2a665f0
--- /dev/null
@@ -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 (file)
index ad9ce25..0000000
+++ /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 (file)
index 0000000..2a665f0
--- /dev/null
@@ -0,0 +1,2 @@
+if not 'AMDGPU' in config.root.targets:
+    config.unsupported = True
diff --git a/llvm/test/Transforms/StraightLineStrengthReduce/R600/lit.local.cfg b/llvm/test/Transforms/StraightLineStrengthReduce/R600/lit.local.cfg
deleted file mode 100644 (file)
index ad9ce25..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-if not 'R600' in config.root.targets:
-    config.unsupported = True