diff src/os/windows/vm/gpu_windows.cpp @ 13888:51584f76462d

pulled Ptx and Hsail classes out of gpu class namespace
author Doug Simon <doug.simon@oracle.com>
date Thu, 06 Feb 2014 11:14:19 +0100
parents 49db2c1e3bee
children 4cbe077ab49a
line wrap: on
line diff
--- a/src/os/windows/vm/gpu_windows.cpp	Thu Feb 06 00:21:10 2014 -0800
+++ b/src/os/windows/vm/gpu_windows.cpp	Thu Feb 06 11:14:19 2014 +0100
@@ -24,11 +24,12 @@
 
 #include "precompiled.hpp"
 #include "runtime/gpu.hpp"
+#include "hsail/vm/gpu_hsail.hpp"
 #include "utilities/ostream.hpp"
 
 jobject gpu::probe_gpus(JNIEnv* env) {
   // TODO: add detection of PTX/NVidia
-  if (UseHSAILSimulator && gpu::Hsail::register_natives(env)) {
+  if (UseHSAILSimulator && Hsail::register_natives(env)) {
     return env->NewStringUTF("HSAIL");
   }
   return env->NewStringUTF("");