mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
Fix validation errors.
llvm-svn: 73515
This commit is contained in:
parent
b7cdd1a395
commit
45f4444e73
@ -2,6 +2,7 @@
|
||||
"http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
|
||||
<title>LLVM Programmer's Manual</title>
|
||||
<link rel="stylesheet" href="llvm.css" type="text/css">
|
||||
</head>
|
||||
@ -131,7 +132,7 @@ with another <tt>Value</tt></a> </li>
|
||||
|
||||
<li><a href="#threading">Threads and LLVM</a>
|
||||
<ul>
|
||||
<li><a href="#startmultithreaded">Entering threaded mode with <tt>llvm_start_multithreaded()</tt><a/></li>
|
||||
<li><a href="#startmultithreaded">Entering threaded mode with <tt>llvm_start_multithreaded()</tt></a></li>
|
||||
<li><a href="#shutdown">Ending execution with <tt>llvm_shutdown()</tt></a></li>
|
||||
<li><a href="#managedstatic">Lazy initialization with <tt>ManagedStatic</tt></a></li>
|
||||
</ul>
|
||||
@ -2127,7 +2128,7 @@ FunctionType *ft = TypeBuilder<types::i<8>(types::i<32>*), true&g
|
||||
|
||||
<div class="doc_code">
|
||||
<pre>
|
||||
std::vector<const Type*> params;
|
||||
std::vector<const Type*> params;
|
||||
params.push_back(PointerType::getUnqual(Type::Int32Ty));
|
||||
FunctionType *ft = FunctionType::get(Type::Int8Ty, params, false);
|
||||
</pre>
|
||||
|
Loading…
Reference in New Issue
Block a user