diff options
author | Davide Italiano <davide@freebsd.org> | 2015-10-14 20:29:54 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2015-10-14 20:29:54 +0000 |
commit | ab2562199749a2522ed3a2c7fe31ec9489c7a9fe (patch) | |
tree | e816428bc9d33a76b200b1efcf1d24126dffe3e8 /llvm/tools/bugpoint/BugDriver.h | |
parent | 92b9ec3c842a5c483f948eaf521e532b3a8ae9d0 (diff) | |
download | bcm5719-llvm-ab2562199749a2522ed3a2c7fe31ec9489c7a9fe.tar.gz bcm5719-llvm-ab2562199749a2522ed3a2c7fe31ec9489c7a9fe.zip |
[Bugpoint] Use 'CC' instead of 'GCC' for variable naming.
We now use clang by default and fallback to gcc when requested.
With this commit, names reflect reality. No functional change
intended.
Discussed with: Rafael Espindola.
llvm-svn: 250321
Diffstat (limited to 'llvm/tools/bugpoint/BugDriver.h')
-rw-r--r-- | llvm/tools/bugpoint/BugDriver.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/bugpoint/BugDriver.h b/llvm/tools/bugpoint/BugDriver.h index 579781246c5..1bd2e80a630 100644 --- a/llvm/tools/bugpoint/BugDriver.h +++ b/llvm/tools/bugpoint/BugDriver.h @@ -36,7 +36,7 @@ class LLVMContext; class DebugCrashes; -class GCC; +class CC; extern bool DisableSimplifyCFG; @@ -52,7 +52,7 @@ class BugDriver { std::vector<std::string> PassesToRun; AbstractInterpreter *Interpreter; // How to run the program AbstractInterpreter *SafeInterpreter; // To generate reference output, etc. - GCC *gcc; + CC *cc; bool run_find_bugs; unsigned Timeout; unsigned MemoryLimit; |