OSDN Git Service

Detabify.
authorBill Wendling <isanbard@gmail.com>
Tue, 26 Feb 2008 10:46:10 +0000 (10:46 +0000)
committerBill Wendling <isanbard@gmail.com>
Tue, 26 Feb 2008 10:46:10 +0000 (10:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47596 91177308-0d34-0410-b5e6-96231b3b80d8

tools/bugpoint/BugDriver.cpp
tools/bugpoint/ListReducer.h
tools/bugpoint/OptimizerDriver.cpp
tools/llvmc/CompilerDriver.cpp
tools/llvmc/Configuration.cpp

index 3fbe589..acea37e 100644 (file)
@@ -184,7 +184,7 @@ bool BugDriver::run() {
   if (ReferenceOutputFile.empty()) {
     std::cout << "Generating reference output from raw program: ";
     if(!createReferenceFile(Program)){
-       return debugCodeGeneratorCrash();
+      return debugCodeGeneratorCrash();
     }
     CreatedOutput = true;
   }
index cd629da..de3f389 100644 (file)
@@ -80,18 +80,17 @@ Backjump:
         std::cerr << "\n\n*** Reduction Interrupted, cleaning up...\n\n";
         return true;
       }
-               
+
       // If the loop doesn't make satisfying progress, try shuffling.
       // The purpose of shuffling is to avoid the heavy tails of the
       // distribution (improving the speed of convergence).
       if (ShufflingEnabled && 
-       NumOfIterationsWithoutProgress > MaxIterations) {
-               
-       std::vector<ElTy> ShuffledList(TheList);
-       std::random_shuffle(ShuffledList.begin(), ShuffledList.end());
-       std::cerr << "\n\n*** Testing shuffled set...\n\n";
-       // Check that random shuffle doesn't loose the bug
-       if (doTest(ShuffledList, empty) == KeepPrefix) {
+          NumOfIterationsWithoutProgress > MaxIterations) {
+        std::vector<ElTy> ShuffledList(TheList);
+        std::random_shuffle(ShuffledList.begin(), ShuffledList.end());
+        std::cerr << "\n\n*** Testing shuffled set...\n\n";
+        // Check that random shuffle doesn't loose the bug
+        if (doTest(ShuffledList, empty) == KeepPrefix) {
           // If the bug is still here, use the shuffled list.
           TheList.swap(ShuffledList);
           MidTop = TheList.size();
@@ -99,11 +98,11 @@ Backjump:
           // probability of inifinite looping without making progress.
           MaxIterations += 2;
           std::cerr << "\n\n*** Shuffling does not hide the bug...\n\n";
-       } else {
+        } else {
           ShufflingEnabled = false; // Disable shuffling further on
           std::cerr << "\n\n*** Shuffling hides the bug...\n\n";
-       }
-       NumOfIterationsWithoutProgress = 0;
+        }
+        NumOfIterationsWithoutProgress = 0;
       }
       
       unsigned Mid = MidTop / 2;
index 9ebc200..b08171b 100644 (file)
@@ -157,7 +157,7 @@ bool BugDriver::runPasses(const std::vector<const PassInfo*> &Passes,
   // setup the child process' arguments
   const char** args = (const char**)
     alloca(sizeof(const char*) * 
-          (Passes.size()+13+2*PluginLoader::getNumPlugins()+NumExtraArgs));
+           (Passes.size()+13+2*PluginLoader::getNumPlugins()+NumExtraArgs));
   int n = 0;
   sys::Path tool = sys::Program::FindProgramByName(ToolName);
   if (UseValgrind) {
index 30556f0..65684d6 100644 (file)
@@ -259,43 +259,43 @@ private:
     if (programName[0] == '%' && programName.length() >2) {
       switch(programName[1]){
       case 'b':
-       if (programName.substr(0,8) == "%bindir%") {
-         std::string tmp(LLVM_BINDIR);
-         tmp.append(programName.substr(8));
-         pat->program.set(tmp);
-       }
-       break;
+        if (programName.substr(0,8) == "%bindir%") {
+          std::string tmp(LLVM_BINDIR);
+          tmp.append(programName.substr(8));
+          pat->program.set(tmp);
+        }
+        break;
       case 'l':
-       if (programName.substr(0,12) == "%llvmgccdir%"){
-         std::string tmp(LLVMGCCDIR);
-         tmp.append(programName.substr(12));
-         pat->program.set(tmp);
-       }else if (programName.substr(0,13) == "%llvmgccarch%"){
-         std::string tmp(LLVMGCCARCH);
-         tmp.append(programName.substr(13));
-         pat->program.set(tmp);
-       }else if (programName.substr(0,9) == "%llvmgcc%"){
-         std::string tmp(LLVMGCC);
-         tmp.append(programName.substr(9));
-         pat->program.set(tmp);
-       }else if (programName.substr(0,9) == "%llvmgxx%"){
-         std::string tmp(LLVMGXX);
-         tmp.append(programName.substr(9));
-         pat->program.set(tmp);
-       }else if (programName.substr(0,9) == "%llvmcc1%"){
-         std::string tmp(LLVMCC1);
-         tmp.append(programName.substr(9));
-         pat->program.set(tmp);
-       }else if (programName.substr(0,13) == "%llvmcc1plus%"){
-         std::string tmp(LLVMCC1PLUS);
-         tmp.append(programName.substr(13));
-         pat->program.set(tmp);
-       }else if (programName.substr(0,8) == "%libdir%") {
-         std::string tmp(LLVM_LIBDIR);
-         tmp.append(programName.substr(8));
-         pat->program.set(tmp);
-       }
-         break;
+        if (programName.substr(0,12) == "%llvmgccdir%"){
+          std::string tmp(LLVMGCCDIR);
+          tmp.append(programName.substr(12));
+          pat->program.set(tmp);
+        }else if (programName.substr(0,13) == "%llvmgccarch%"){
+          std::string tmp(LLVMGCCARCH);
+          tmp.append(programName.substr(13));
+          pat->program.set(tmp);
+        }else if (programName.substr(0,9) == "%llvmgcc%"){
+          std::string tmp(LLVMGCC);
+          tmp.append(programName.substr(9));
+          pat->program.set(tmp);
+        }else if (programName.substr(0,9) == "%llvmgxx%"){
+          std::string tmp(LLVMGXX);
+          tmp.append(programName.substr(9));
+          pat->program.set(tmp);
+        }else if (programName.substr(0,9) == "%llvmcc1%"){
+          std::string tmp(LLVMCC1);
+          tmp.append(programName.substr(9));
+          pat->program.set(tmp);
+        }else if (programName.substr(0,13) == "%llvmcc1plus%"){
+          std::string tmp(LLVMCC1PLUS);
+          tmp.append(programName.substr(13));
+          pat->program.set(tmp);
+        }else if (programName.substr(0,8) == "%libdir%") {
+          std::string tmp(LLVM_LIBDIR);
+          tmp.append(programName.substr(8));
+          pat->program.set(tmp);
+        }
+        break;
       }
     }
     action->program = pat->program;
index 1aa047d..0e05e76 100644 (file)
@@ -116,8 +116,8 @@ namespace {
       result.clear();
       while (next_is_real()) {
         switch (token ) {
-       case LLVMGCCDIR_SUBST:
-       case LLVMGCCARCH_SUBST:
+        case LLVMGCCDIR_SUBST:
+        case LLVMGCCARCH_SUBST:
           case STRING :
           case OPTION :
             result += ConfigLexerState.StringVal;
@@ -262,11 +262,11 @@ namespace {
       str.clear();
       do {
         switch (token) {
-       case BINDIR_SUBST:
-       case LLVMGCC_SUBST:
-       case LLVMGXX_SUBST:
-       case LLVMCC1_SUBST:
-       case LLVMCC1PLUS_SUBST:
+        case BINDIR_SUBST:
+        case LLVMGCC_SUBST:
+        case LLVMGXX_SUBST:
+        case LLVMCC1_SUBST:
+        case LLVMCC1PLUS_SUBST:
           case OPTION:
           case STRING:
           case ARGS_SUBST: