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