diff options
author | Justin Lebar <jlebar@google.com> | 2016-09-07 20:42:24 +0000 |
---|---|---|
committer | Justin Lebar <jlebar@google.com> | 2016-09-07 20:42:24 +0000 |
commit | 62d5b011897d9f773ebb483455610a7778a74e56 (patch) | |
tree | e3b6dae90d38847ef20e37498db7444d26fb4bc1 | |
parent | 0a75850fa7cf58fcadab61509ffa79e57793f449 (diff) | |
download | bcm5719-llvm-62d5b011897d9f773ebb483455610a7778a74e56.tar.gz bcm5719-llvm-62d5b011897d9f773ebb483455610a7778a74e56.zip |
[CUDA] Fix typo in link in CompileCudaWithLLVM.
llvm-svn: 280859
-rw-r--r-- | llvm/docs/CompileCudaWithLLVM.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/CompileCudaWithLLVM.rst b/llvm/docs/CompileCudaWithLLVM.rst index 04703319d95..96c48254139 100644 --- a/llvm/docs/CompileCudaWithLLVM.rst +++ b/llvm/docs/CompileCudaWithLLVM.rst @@ -42,7 +42,7 @@ Invoking clang Invoking clang for CUDA compilation works similarly to compiling regular C++. You just need to be aware of a few additional flags. -You can use `this <https://gist.github.com/855e277884eb6b388cd2f00d956c2fd4>_` +You can use `this <https://gist.github.com/855e277884eb6b388cd2f00d956c2fd4>`_ program as a toy example. Save it as ``axpy.cu``. To build and run, run the following commands: |