Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Unified Diff: tools/pnacl-abicheck/pnacl-abicheck.cpp

Issue 940243003: PNaCl localmod mods in LLVM to 223109 (local files only) (Closed)
Patch Set: fix comment Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/pnacl-abicheck/pnacl-abicheck.cpp
diff --git a/tools/pnacl-abicheck/pnacl-abicheck.cpp b/tools/pnacl-abicheck/pnacl-abicheck.cpp
index b03a00d02a9804ea05254efd57df067f24adcafb..20c80637dbfd46d92d71a482b33ede568b3dff35 100644
--- a/tools/pnacl-abicheck/pnacl-abicheck.cpp
+++ b/tools/pnacl-abicheck/pnacl-abicheck.cpp
@@ -88,7 +88,7 @@ int main(int argc, char **argv) {
ErrorsFound |= CheckABIVerifyErrors(ABIErrorReporter, "Module");
std::unique_ptr<FunctionPassManager> PM(new FunctionPassManager(&*Mod));
- PM->add(new DataLayoutPass(&*Mod));
+ PM->add(new DataLayoutPass());
PM->add(createPNaClABIVerifyFunctionsPass(&ABIErrorReporter));
PM->doInitialization();

Powered by Google App Engine
This is Rietveld 408576698