We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b29fb9c commit 797b767Copy full SHA for 797b767
llvm/include/llvm/IR/GenericConvergenceVerifierImpl.h
@@ -31,8 +31,6 @@
31
#include "llvm/ADT/Twine.h"
32
#include "llvm/IR/Intrinsics.h"
33
34
-using namespace llvm;
35
-
36
#define Check(C, ...) \
37
do { \
38
if (!(C)) { \
@@ -49,6 +47,7 @@ using namespace llvm;
49
47
} \
50
48
} while (false)
51
+namespace llvm {
52
static bool isConvergenceControlIntrinsic(unsigned IntrinsicID) {
53
switch (IntrinsicID) {
54
default:
@@ -60,7 +59,6 @@ static bool isConvergenceControlIntrinsic(unsigned IntrinsicID) {
60
59
}
61
62
63
-namespace llvm {
64
template <class ContextT> void GenericConvergenceVerifier<ContextT>::clear() {
65
Tokens.clear();
66
CI.clear();
0 commit comments