From 71ab0dc6f02b7fd07de272dfcd67ccdb2399ab4f Mon Sep 17 00:00:00 2001 From: Sam James Date: Fri, 19 Jul 2024 01:11:30 +0100 Subject: [PATCH] [docs] Fix goo.gl link in comment for 'Straight-line scalar optimizations' paper goo.gl is going away: https://developers.googleblog.com/en/google-url-shortener-links-will-no-longer-be-available/ Fix goo.gl link from: - https://goo.gl/4Rb9As + https://docs.google.com/document/d/1momWzKFf4D6h8H3YlfgKQ3qeZy5ayvMRh6yR-Xn2hUE Committed as obvious. Bug: https://github.com/llvm/llvm-project/issues/99586 --- llvm/docs/CompileCudaWithLLVM.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/docs/CompileCudaWithLLVM.rst b/llvm/docs/CompileCudaWithLLVM.rst index 0371d7a3bdfc..1b1a27255cc4 100644 --- a/llvm/docs/CompileCudaWithLLVM.rst +++ b/llvm/docs/CompileCudaWithLLVM.rst @@ -514,7 +514,7 @@ Modern CPUs and GPUs are architecturally quite different, so code that's fast on a CPU isn't necessarily fast on a GPU. We've made a number of changes to LLVM to make it generate good GPU code. Among these changes are: -* `Straight-line scalar optimizations `_ -- These +* `Straight-line scalar optimizations `_ -- These reduce redundancy within straight-line code. * `Aggressive speculative execution