mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-03 00:20:40 +03:00
fix typo
This commit is contained in:
parent
0647a58fe1
commit
c7b95a09e5
2 changed files with 7 additions and 7 deletions
|
@ -56,9 +56,9 @@ struct RtCompileVarList
|
|||
const void* init;
|
||||
};
|
||||
|
||||
struct RtComileModuleList
|
||||
struct RtCompileModuleList
|
||||
{
|
||||
RtComileModuleList* next;
|
||||
RtCompileModuleList* next;
|
||||
const char* irData;
|
||||
int irDataSize;
|
||||
RtCompileFuncList* funcList;
|
||||
|
@ -276,7 +276,7 @@ MyJIT& getJit()
|
|||
return jit;
|
||||
}
|
||||
|
||||
void rtCompileProcessImplSoInternal(const RtComileModuleList* modlist_head, const Context& context) {
|
||||
void rtCompileProcessImplSoInternal(const RtCompileModuleList* modlist_head, const Context& context) {
|
||||
interruptPoint(context, "Init");
|
||||
MyJIT& myJit = getJit();
|
||||
auto current = modlist_head;
|
||||
|
@ -373,7 +373,7 @@ void rtCompileProcessImplSo(const void* modlist_head,
|
|||
assert(nullptr != context);
|
||||
assert(sizeof(*context) == contextSize);
|
||||
rtCompileProcessImplSoInternal(
|
||||
static_cast<const RtComileModuleList*>(modlist_head),
|
||||
static_cast<const RtCompileModuleList*>(modlist_head),
|
||||
*context);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue