more fixes to C code.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37339 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/docs/LangRef.html b/docs/LangRef.html
index cf5ee06..e9b3c56 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -2792,16 +2792,16 @@
 <pre>
 struct RT {
   char A;
-  i32 B[10][20];
+  int B[10][20];
   char C;
 };
 struct ST {
-  i32 X;
+  int X;
   double Y;
   struct RT Z;
 };
 
-i32 *foo(struct ST *s) {
+int *foo(struct ST *s) {
   return &amp;s[1].Z.B[5][13];
 }
 </pre>