diff options
author | Dan Gohman <gohman@apple.com> | 2009-07-25 02:23:48 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-07-25 02:23:48 +0000 |
commit | 6b8677015dd883fa66cb33c2bba41f470655f75b (patch) | |
tree | fe63c8a3f24d2efcc394bad16018cb0236992b3e /llvm | |
parent | 04bbd9cd345a7fb47e2241ba1c0a315d9130bf54 (diff) | |
download | bcm5719-llvm-6b8677015dd883fa66cb33c2bba41f470655f75b.tar.gz bcm5719-llvm-6b8677015dd883fa66cb33c2bba41f470655f75b.zip |
Update to new syntax.
llvm-svn: 77043
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/docs/LangRef.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index 57aace82bab..9ab62c03492 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/docs/LangRef.html @@ -3907,7 +3907,7 @@ int *foo(struct ST *s) { %RT = <a href="#namedtypes">type</a> { i8 , [10 x [20 x i32]], i8 } %ST = <a href="#namedtypes">type</a> { i32, double, %RT } -define i32* %foo(%ST* %s) { +define i32* @foo(%ST* %s) { entry: %reg = getelementptr %ST* %s, i32 1, i32 2, i32 1, i32 5, i32 13 ret i32* %reg @@ -3931,7 +3931,7 @@ entry: the given testcase is equivalent to:</p> <pre> - define i32* %foo(%ST* %s) { + define i32* @foo(%ST* %s) { %t1 = getelementptr %ST* %s, i32 1 <i>; yields %ST*:%t1</i> %t2 = getelementptr %ST* %t1, i32 0, i32 2 <i>; yields %RT*:%t2</i> %t3 = getelementptr %RT* %t2, i32 0, i32 1 <i>; yields [10 x [20 x i32]]*:%t3</i> |