[gcc(refs/vendors/redhat/heads/gcc-10-branch)] Add acc_device_radeon to name_of_acc_device_t function
Jakub Jelinek
jakub@gcc.gnu.org
Thu Jan 30 20:56:00 GMT 2020
https://gcc.gnu.org/g:989a5fb3aa5cb241727922c669da6742d33a7a86
commit 989a5fb3aa5cb241727922c669da6742d33a7a86
Author: Frederik Harwath <frederik@codesourcery.com>
Date: Wed Jan 29 15:51:44 2020 +0100
Add acc_device_radeon to name_of_acc_device_t function
libgomp/
* oacc-init.c (name_of_acc_device_t): Handle acc_device_radeon.
Reviewed-by: Thomas Schwinge <thomas@codesourcery.com>
Diff:
---
libgomp/ChangeLog | 3 +++
libgomp/oacc-init.c | 1 +
2 files changed, 4 insertions(+)
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index 7316db7..05f948b 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,6 @@
+2020-01-29 Frederik Harwath <frederik@codesourcery.com>
+
+ * oacc-init.c (name_of_acc_device_t): Handle acc_device_radeon.
2020-01-29 Frederik Harwath <frederik@codesourcery.com>
diff --git a/libgomp/oacc-init.c b/libgomp/oacc-init.c
index 89a30b3..ef12b4c 100644
--- a/libgomp/oacc-init.c
+++ b/libgomp/oacc-init.c
@@ -115,6 +115,7 @@ name_of_acc_device_t (enum acc_device_t type)
case acc_device_host: return "host";
case acc_device_not_host: return "not_host";
case acc_device_nvidia: return "nvidia";
+ case acc_device_radeon: return "radeon";
default: unknown_device_type_error (type);
}
__builtin_unreachable ();
More information about the Gcc-cvs
mailing list