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

Side by Side Diff: include/llvm/Analysis/NaCl.h

Issue 14329025: Check for metadata in PNaCl ABI checker. (Closed) Base URL: http://git.chromium.org/native_client/pnacl-llvm.git@master
Patch Set: cleanup Created 7 years, 8 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 unified diff | Download patch
OLDNEW
1 //===-- NaCl.h - NaCl Analysis ---------------------------*- C++ -*-===// 1 //===-- NaCl.h - NaCl Analysis ---------------------------*- C++ -*-===//
2 // 2 //
3 // The LLVM Compiler Infrastructure 3 // The LLVM Compiler Infrastructure
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 9
10 #ifndef LLVM_ANALYSIS_NACL_H 10 #ifndef LLVM_ANALYSIS_NACL_H
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 report_fatal_error("PNaCl ABI verification failed"); 51 report_fatal_error("PNaCl ABI verification failed");
52 } 52 }
53 } 53 }
54 private: 54 private:
55 int ErrorCount; 55 int ErrorCount;
56 std::string ErrorString; 56 std::string ErrorString;
57 raw_string_ostream Errors; 57 raw_string_ostream Errors;
58 bool UseFatalErrors; 58 bool UseFatalErrors;
59 }; 59 };
60 60
61 FunctionPass *createPNaClABIVerifyFunctionsPass(PNaClABIErrorReporter * Reporter ); 61 FunctionPass *createPNaClABIVerifyFunctionsPass(
62 ModulePass *createPNaClABIVerifyModulePass(PNaClABIErrorReporter * Reporter); 62 PNaClABIErrorReporter *Reporter, bool AllowDebugMetadata);
63 ModulePass *createPNaClABIVerifyModulePass(
64 PNaClABIErrorReporter *Reporter, bool AllowDebugMetadata);
63 65
64 } 66 }
65 67
66 68
67 #endif 69 #endif
OLDNEW
« no previous file with comments | « no previous file | lib/Analysis/NaCl/PNaClABIVerifyFunctions.cpp » ('j') | lib/Analysis/NaCl/PNaClABIVerifyFunctions.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698