From b76d16c7c7b54b3da35c3c91a8e5bc5dc7d6c57e Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Thu, 19 Sep 2019 20:55:02 -0400 Subject: [PATCH] update remaining llvm 8.0.0 references to 9.0.0 --- ci/azure/windows_install | 4 ++-- doc/langref.html.in | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ci/azure/windows_install b/ci/azure/windows_install index 5f01d9a620..390467e55b 100755 --- a/ci/azure/windows_install +++ b/ci/azure/windows_install @@ -6,5 +6,5 @@ set -e pacman -Su --needed --noconfirm pacman -S --needed --noconfirm wget p7zip python3-pip pip install s3cmd -wget -nv "https://ziglang.org/deps/llvm%2bclang-8.0.0-win64-msvc-release.tar.xz" -tar xf llvm+clang-8.0.0-win64-msvc-release.tar.xz +wget -nv "https://ziglang.org/deps/llvm%2bclang-9.0.0-win64-msvc-release.tar.xz" +tar xf llvm+clang-9.0.0-win64-msvc-release.tar.xz diff --git a/doc/langref.html.in b/doc/langref.html.in index 56db72386f..f500fe223e 100644 --- a/doc/langref.html.in +++ b/doc/langref.html.in @@ -5846,7 +5846,7 @@ volatile ( // Next is the output constraint string. This feature is still // considered unstable in Zig, and so LLVM/GCC documentation // must be used to understand the semantics. -// http://releases.llvm.org/8.0.0/docs/LangRef.html#inline-asm-constraint-string +// http://releases.llvm.org/9.0.0/docs/LangRef.html#inline-asm-constraint-string // https://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html // In this example, the constraint string means "the result value of // this inline assembly instruction is whatever is in $rax". @@ -5887,7 +5887,7 @@ volatile (

Output constraints are still considered to be unstable in Zig, and so - LLVM documentation + LLVM documentation and GCC documentation must be used to understand the semantics. @@ -5902,7 +5902,7 @@ volatile (

Input constraints are still considered to be unstable in Zig, and so - LLVM documentation + LLVM documentation and GCC documentation must be used to understand the semantics.