OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LModule
(Results
1 - 3
of
3
) sorted by null
/external/swiftshader/third_party/LLVM/tools/llvm-diff/
llvm-diff.cpp
77
Module *
LModule
= ReadModule(Context, LeftFilename);
79
if (!
LModule
|| !RModule) return 1;
81
DiffConsumer Consumer(
LModule
, RModule);
87
diffGlobal(Engine,
LModule
, RModule, GlobalsToCompare[I]);
91
Engine.diff(
LModule
, RModule);
94
delete
LModule
;
DiffConsumer.h
69
Module *
LModule
;
81
: out(errs()),
LModule
(L), RModule(R), Differences(false), Indent(0) {}
/external/llvm/tools/llvm-diff/
llvm-diff.cpp
74
std::unique_ptr<Module>
LModule
= readModule(Context, LeftFilename);
76
if (!
LModule
|| !RModule) return 1;
84
diffGlobal(Engine, *
LModule
, *RModule, GlobalsToCompare[I]);
88
Engine.diff(
LModule
.get(), RModule.get());
Completed in 170 milliseconds