From 5a466d37d8eb7176eec8e3dc9bd6122625ad3c59 Mon Sep 17 00:00:00 2001 From: "Duncan P. N. Exon Smith" Date: Tue, 19 Aug 2014 21:48:04 +0000 Subject: [PATCH] LangRef: Move example of function-scope uselistorder to a function Should make the example added in r216025 a little more clear. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216027 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.rst | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/docs/LangRef.rst b/docs/LangRef.rst index 649df4c5878..652aeef2e20 100644 --- a/docs/LangRef.rst +++ b/docs/LangRef.rst @@ -1778,9 +1778,16 @@ function's scope. :: - ; At function scope. - uselistorder i32 %arg1, { 1, 0, 2 } - uselistorder label %bb, { 1, 0 } + define void @foo(i32 %arg1, i32 %arg2) { + entry: + ; ... instructions ... + bb: + ; ... instructions ... + + ; At function scope. + uselistorder i32 %arg1, { 1, 0, 2 } + uselistorder label %bb, { 1, 0 } + } ; At global scope. uselistorder i32* @global, { 1, 2, 0 }