add a global variable example

llvm-svn: 33190
diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html
index 2e40842..bbc0611 100644
--- a/llvm/docs/LangRef.html
+++ b/llvm/docs/LangRef.html
@@ -616,6 +616,13 @@
 global is forced to have at least that much alignment.  All alignments must be
 a power of 2.</p>
 
+<p>For example, the following defines a global with an initializer, section,
+   and alignment:</p>
+
+<pre>
+  %G = constant float 1.0, section "foo", align 4
+</pre>
+
 </div>