r265083 - [CUDA] Fix typo in __clang_cuda_runtime_wrapper.h.

Justin Lebar via cfe-commits cfe-commits at lists.llvm.org
Thu Mar 31 17:25:42 PDT 2016


Author: jlebar
Date: Thu Mar 31 19:25:42 2016
New Revision: 265083

URL: http://llvm.org/viewvc/llvm-project?rev=265083&view=rev
Log:
[CUDA] Fix typo in __clang_cuda_runtime_wrapper.h.

We're #including the wrong file!

Modified:
    cfe/trunk/lib/Headers/__clang_cuda_runtime_wrapper.h

Modified: cfe/trunk/lib/Headers/__clang_cuda_runtime_wrapper.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Headers/__clang_cuda_runtime_wrapper.h?rev=265083&r1=265082&r2=265083&view=diff
==============================================================================
--- cfe/trunk/lib/Headers/__clang_cuda_runtime_wrapper.h (original)
+++ cfe/trunk/lib/Headers/__clang_cuda_runtime_wrapper.h Thu Mar 31 19:25:42 2016
@@ -43,7 +43,7 @@
 #if defined(__CUDA__) && defined(__clang__)
 
 // Include some forward declares that must come before cmath.
-#include <__clang_cuda_runtime_wrapper.h>
+#include <__clang_cuda_math_forward_declares.h>
 
 // Include some standard headers to avoid CUDA headers including them
 // while some required macros (like __THROW) are in a weird state.




More information about the cfe-commits mailing list