Fix white space issues.
authoriposva@chromium.org <iposva@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Mon, 26 Jan 2009 18:23:01 +0000 (18:23 +0000)
committeriposva@chromium.org <iposva@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Mon, 26 Jan 2009 18:23:01 +0000 (18:23 +0000)
Review URL: http://codereview.chromium.org/18806

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1163 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

src/bootstrapper.h
src/d8.cc
src/execution.cc
src/v8threads.cc

index ac4dd8d..e2883dc 100644 (file)
@@ -68,7 +68,7 @@ class Bootstrapper : public AllStatic {
   class FixupFlagsIsPCRelative: public BitField<bool, 0, 1> {};
   class FixupFlagsUseCodeObject: public BitField<bool, 1, 1> {};
   class FixupFlagsArgumentsCount: public BitField<uint32_t, 2, 32-2> {};
-  
+
   // Support for thread preemption.
   static int ArchiveSpacePerThread();
   static char* ArchiveState(char* to);
index 8407e7a..e026d28 100644 (file)
--- a/src/d8.cc
+++ b/src/d8.cc
@@ -461,9 +461,9 @@ void ShellThread::Run() {
 
   Persistent<Context> thread_context = Context::New(NULL, global_template);
   thread_context->SetSecurityToken(Undefined());
-  
+
   Context::Scope context_scope(thread_context);
-  
+
   char* ptr = const_cast<char*>(files_.start());
   while ((ptr != NULL) && (*ptr != '\0')) {
     // For each newline-separated line.
@@ -478,7 +478,7 @@ void ShellThread::Run() {
     Handle<String> str = Shell::ReadFile(filename);
     Shell::ExecuteString(str, String::New(filename), false, false);
   }
-  
+
   thread_context.Dispose();
 }
 
index 95f781e..f721cbd 100644 (file)
@@ -198,7 +198,7 @@ StackGuard::StackGuard() {
     // Initial StackGuard is being set. We will set the stack limits based on
     // the current stack pointer allowing the stack to grow kLimitSize from
     // here.
-    
+
     // Ensure that either the stack limits are unset (kIllegalLimit) or that
     // they indicate a pending interruption. The interrupt limit will be
     // temporarily reset through the code below and reestablished if the
index dd36c43..df0095d 100644 (file)
@@ -120,11 +120,11 @@ bool ThreadManager::RestoreThread() {
     Thread::SetThreadLocal(thread_state_key, NULL);
     return true;
   }
-  
+
   // Make sure that the preemption thread cannot modify the thread state while
   // it is being archived or restored.
   ExecutionAccess access;
-  
+
   // If there is another thread that was lazily archived then we have to really
   // archive it now.
   if (lazily_archived_thread_.IsValid()) {