Update to new syntax.
authorDan Gohman <gohman@apple.com>
Sat, 25 Jul 2009 02:23:48 +0000 (02:23 +0000)
committerDan Gohman <gohman@apple.com>
Sat, 25 Jul 2009 02:23:48 +0000 (02:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77043 91177308-0d34-0410-b5e6-96231b3b80d8

docs/LangRef.html

index 57aace82bab9e81e6cf45e647c4a08abfefdcbbe..9ab62c03492fec031cc280acefd52ae7c9c37f4c 100644 (file)
@@ -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>