diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-02-22 16:48:26 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-02-22 16:48:26 +0000 |
commit | 12a9109a8cb657582a84817e09019df1b42543ab (patch) | |
tree | 5d4e2b6e3d855433b49e3240b818dc455c4e35cf /lib/CodeGen | |
parent | aef605d0089cdff75f1abf90fe121e8dee39d55e (diff) |
Change the name of the vtable-debugging environment variable to
CLANG_VTABLE_DEBUG.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96785 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/CGVtable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGVtable.cpp b/lib/CodeGen/CGVtable.cpp index 43fd56ae5f..97d21f3789 100644 --- a/lib/CodeGen/CGVtable.cpp +++ b/lib/CodeGen/CGVtable.cpp @@ -2034,7 +2034,7 @@ public: } //#define D1(x) -#define D1(X) do { if (getenv("DEBUG")) { X; } } while (0) +#define D1(X) do { if (getenv("CLANG_VTABLE_DEBUG")) { X; } } while (0) void GenerateVBaseOffsets(const CXXRecordDecl *RD, uint64_t Offset, bool updateVBIndex, Index_t current_vbindex) { |