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

Unified Diff: src/assembler.h

Issue 3144: Fix lint issues. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 years, 3 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 | « no previous file | src/assembler-ia32.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/assembler.h
===================================================================
--- src/assembler.h (revision 343)
+++ src/assembler.h (working copy)
@@ -162,7 +162,7 @@
// add more as needed
// Pseudo-types
- reloc_mode_count, // Must be no greater than 14. See RelocInfoWriter.
+ reloc_mode_count, // must be no greater than 14 - see RelocInfoWriter
no_reloc, // never recorded
last_code_enum = code_target,
last_gced_enum = embedded_string
@@ -214,14 +214,17 @@
return mode == statement_position;
}
+
inline bool is_external_reference(RelocMode mode) {
return mode == external_reference;
}
-inline bool is_internal_reference(RelocMode mode) {
+
+inline bool is_internal_reference(RelocMode mode) {
return mode == internal_reference;
}
+
// Relocation information consists of the address (pc) of the datum
// to which the relocation information applies, the relocation mode
// (rmode), and an optional data field. The relocation mode may be
« no previous file with comments | « no previous file | src/assembler-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698