commit | 61399af13fd46fe1be85807ae1d595b1b9ff62cf | [log] [tgz] |
---|---|---|
author | Matthijs Kooijman <matthijs@stdin.nl> | Wed Jun 04 15:46:35 2008 +0000 |
committer | Matthijs Kooijman <matthijs@stdin.nl> | Wed Jun 04 15:46:35 2008 +0000 |
tree | bacf3cfbc42dc8010c39bf490e4ff0eb4a2116ff | |
parent | 444099f615c8eebea8d1f22cbad9dfb5664a16e9 [diff] [blame] |
Fix example to be valid LLVM assembly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51942 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/docs/CodeGenerator.html b/docs/CodeGenerator.html index c09d9e1..bcbb64c 100644 --- a/docs/CodeGenerator.html +++ b/docs/CodeGenerator.html
@@ -621,9 +621,9 @@ <div class="doc_code"> <pre> -int %test(int %X, int %Y) { - %Z = div int %X, %Y - ret int %Z +define i32 @test(i32 %X, i32 %Y) { + %Z = udiv i32 %X, %Y + ret i32 %Z } </pre> </div>