Fix more crlf issues.
[oota-llvm.git] / docs / SourceLevelDebugging.html
index 06bd85248a7f00951a0e9b6bc7b5a9a8155faa32..918383bc21302f4aa807014eaab1bbe9ecb9fd9a 100644 (file)
@@ -4,7 +4,7 @@
 <head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
   <title>Source Level Debugging with LLVM</title>
-  <link rel="stylesheet" href="llvm.css" type="text/css">
+  <link rel="stylesheet" href="_static/llvm.css" type="text/css">
 </head>
 <body>
 
   </li>
 </ul>
 </td>
-<td class="right">
-<img src="img/venusflytrap.jpg" alt="A leafy and green bug eater" width="247"
-height="369">
-</td>
 </tr></table>
 
 <div class="doc_author">
@@ -452,6 +448,7 @@ global variables are collected inside the named metadata
   metadata, ;; Reference to type descriptor
   i1,       ;; True if the global is local to compile unit (static)
   i1,       ;; True if the global is defined in the compile unit (not extern)
+  i32,      ;; Line number where the scope of the subprogram begins
   i32,      ;; Virtuality, e.g. dwarf::DW_VIRTUALITY__virtual
   i32,      ;; Index into a virtual function
   metadata, ;; indicates which base type contains the vtable pointer for the
@@ -2164,16 +2161,15 @@ The DWARF for this would be:
   </tr>
 </table>
 
-</div>
 </div>
 </div>
 
-<div>
 <!-- ======================================================================= -->
 <h3>
   <a name="acceltable">Name Accelerator Tables</a>
 </h3>
 <!-- ======================================================================= -->
+<div>
 <!-- ======================================================================= -->
 <h4>
   <a name="acceltableintroduction">Introduction</a>
@@ -2716,7 +2712,7 @@ HashData[hash_data_count]
   has address attributes: DW_AT_low_pc, DW_AT_high_pc, DW_AT_ranges or
   DW_AT_entry_pc. It also contains DW_TAG_variable DIEs that have a DW_OP_addr
   in the location (global and static variables). All global and static variables
-  should be included, including those scoped withing functions and classes. For
+  should be included, including those scoped within functions and classes. For
   example using the following code:</p>
 <div class="doc_code">
 <pre>
@@ -2842,6 +2838,7 @@ int main ()
 </ul>
 </div>
 </div>
+</div>
 
 <!-- *********************************************************************** -->