[PATCH] D16393: AMDGPU: Fix getArchTypePrefix
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 20 19:10:05 PST 2016
arsenm created this revision.
arsenm added a reviewer: tstellarAMD.
arsenm added a subscriber: llvm-commits.
http://reviews.llvm.org/D16393
Files:
lib/Support/Triple.cpp
Index: lib/Support/Triple.cpp
===================================================================
--- lib/Support/Triple.cpp
+++ lib/Support/Triple.cpp
@@ -94,8 +94,8 @@
case hexagon: return "hexagon";
- case amdgcn:
- case r600: return "amdgpu";
+ case amdgcn: return "amdgcn";
+ case r600: return "r600";
case bpfel:
case bpfeb: return "bpf";
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D16393.45483.patch
Type: text/x-patch
Size: 393 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160121/4858b9ff/attachment.bin>
More information about the llvm-commits
mailing list