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

Side by Side Diff: src/flag-definitions.h

Issue 43943002: Fix release build failures due to --enable-slow-asserts (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after
689 // Debug only flags 689 // Debug only flags
690 // 690 //
691 #undef FLAG 691 #undef FLAG
692 #ifdef DEBUG 692 #ifdef DEBUG
693 #define FLAG FLAG_FULL 693 #define FLAG FLAG_FULL
694 #else 694 #else
695 #define FLAG FLAG_READONLY 695 #define FLAG FLAG_READONLY
696 #endif 696 #endif
697 697
698 // checks.cc 698 // checks.cc
699 #ifndef OPTIMIZED_DEBUG 699 #ifdef ENABLE_SLOW_ASSERTS
700 DEFINE_bool(enable_slow_asserts, false, 700 DEFINE_bool(enable_slow_asserts, false,
701 "enable asserts that are slow to execute") 701 "enable asserts that are slow to execute")
702 #endif 702 #endif
703 703
704 // codegen-ia32.cc / codegen-arm.cc / macro-assembler-*.cc 704 // codegen-ia32.cc / codegen-arm.cc / macro-assembler-*.cc
705 DEFINE_bool(print_source, false, "pretty print source code") 705 DEFINE_bool(print_source, false, "pretty print source code")
706 DEFINE_bool(print_builtin_source, false, 706 DEFINE_bool(print_builtin_source, false,
707 "pretty print source code for builtins") 707 "pretty print source code for builtins")
708 DEFINE_bool(print_ast, false, "print source AST") 708 DEFINE_bool(print_ast, false, "print source AST")
709 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins") 709 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins")
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
879 #undef DEFINE_ALIAS_float 879 #undef DEFINE_ALIAS_float
880 #undef DEFINE_ALIAS_args 880 #undef DEFINE_ALIAS_args
881 881
882 #undef FLAG_MODE_DECLARE 882 #undef FLAG_MODE_DECLARE
883 #undef FLAG_MODE_DEFINE 883 #undef FLAG_MODE_DEFINE
884 #undef FLAG_MODE_DEFINE_DEFAULTS 884 #undef FLAG_MODE_DEFINE_DEFAULTS
885 #undef FLAG_MODE_META 885 #undef FLAG_MODE_META
886 #undef FLAG_MODE_DEFINE_IMPLICATIONS 886 #undef FLAG_MODE_DEFINE_IMPLICATIONS
887 887
888 #undef COMMA 888 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698