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

Unified Diff: include/llvm/Target/TargetLibraryInfo.h

Issue 939073008: Rebased PNaCl localmods in LLVM to 223109 (Closed)
Patch Set: undo localmod 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
« no previous file with comments | « include/llvm/Support/TargetRegistry.h ('k') | include/llvm/Target/TargetOptions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/llvm/Target/TargetLibraryInfo.h
diff --git a/include/llvm/Target/TargetLibraryInfo.h b/include/llvm/Target/TargetLibraryInfo.h
index 46f87b93b001c113c5bf91b467bfdf4d92d92381..6c9a23e78f9104acecf111146a7f5171e9f93392 100644
--- a/include/llvm/Target/TargetLibraryInfo.h
+++ b/include/llvm/Target/TargetLibraryInfo.h
@@ -317,7 +317,9 @@ namespace llvm {
/// int fseek(FILE *stream, long offset, int whence);
fseek,
/// int fseeko(FILE *stream, off_t offset, int whence);
- fseeko,
+ // @LOCALMOD: Capitalize to avoid mingw #define:
+ // https://code.google.com/p/nativeclient/issues/detail?id=4089
+ Fseeko,
/// int fseeko64(FILE *stream, off64_t offset, int whence)
fseeko64,
/// int fsetpos(FILE *stream, const fpos_t *pos);
@@ -333,7 +335,9 @@ namespace llvm {
/// long ftell(FILE *stream);
ftell,
/// off_t ftello(FILE *stream);
- ftello,
+ // @LOCALMOD: Capitalize to avoid mingw #define:
+ // https://code.google.com/p/nativeclient/issues/detail?id=4089
+ Ftello,
/// off64_t ftello64(FILE *stream)
ftello64,
/// int ftrylockfile(FILE *file);
« no previous file with comments | « include/llvm/Support/TargetRegistry.h ('k') | include/llvm/Target/TargetOptions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698