[HIPIFY] Add DEBUG(X) macro compatibility

In LLVM 7.0 DEBUG(X) was deleted, LLVM_DEBUG(X) should be used instead.
This commit is contained in:
Evgeny Mankov
2018-07-11 18:21:00 +03:00
orang tua 56984d04b0
melakukan 22dffde22e
2 mengubah file dengan 5 tambahan dan 1 penghapusan
+4
Melihat File
@@ -23,6 +23,10 @@ namespace llcompat {
#define GET_NUM_ARGS() getNumArgs()
#endif
#if LLVM_VERSION_MAJOR < 7
#define LLVM_DEBUG(X) DEBUG(X)
#endif
void PrintStackTraceOnErrorSignal();
/**
+1 -1
Melihat File
@@ -132,7 +132,7 @@ int main(int argc, const char **argv) {
// Hipify _all_ the things!
if (Tool.runAndSave(&actionFactory)) {
DEBUG(llvm::dbgs() << "Skipped some replacements.\n");
LLVM_DEBUG(llvm::dbgs() << "Skipped some replacements.\n");
}
// Either move the tmpfile to the output, or remove it.