mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-03-04 16:41:43 +00:00

We have a new policy in place making links to private resources something we try to avoid in source and test files. Normally, we'd organically switch to the new policy rather than make a sweeping change across a project. However, Clang is in a somewhat special circumstance currently: recently, I've had several new contributors run into rdar links around test code which their patch was changing the behavior of. This turns out to be a surprisingly bad experience, especially for newer folks, for a handful of reasons: not understanding what the link is and feeling intimidated by it, wondering whether their changes are actually breaking something important to a downstream in some way, having to hunt down strangers not involved with the patch to impose on them for help, accidental pressure from asking for potentially private IP to be made public, etc. Because folks run into these links entirely by chance (through fixing bugs or working on new features), there's not really a set of problematic links to focus on -- all of the links have basically the same potential for causing these problems. As a result, this is an omnibus patch to remove all such links. This was not a mechanical change; it was done by manually searching for rdar, radar, radr, and other variants to find all the various problematic links. From there, I tried to retain or reword the surrounding comments so that we would lose as little context as possible. However, because most links were just a plain link with no supporting context, the majority of the changes are simple removals. Differential Review: https://reviews.llvm.org/D158071
144 lines
5.9 KiB
C++
144 lines
5.9 KiB
C++
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-constant-conversion %s
|
|
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-constant-conversion -std=c++98 %s
|
|
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-constant-conversion -std=c++11 %s
|
|
|
|
void choice(int);
|
|
int choice(bool);
|
|
|
|
void test() {
|
|
// Result of ! must be type bool.
|
|
int i = choice(!1);
|
|
}
|
|
|
|
#if __cplusplus < 201703L
|
|
void f0() {
|
|
extern void f0_1(int*);
|
|
register int x;
|
|
#if __cplusplus >= 201103L // C++11 or later
|
|
// expected-warning@-2 {{'register' storage class specifier is deprecated}}
|
|
#endif
|
|
f0_1(&x);
|
|
}
|
|
#endif
|
|
|
|
namespace test1 {
|
|
template <class T> void bar(T &x) { T::fail(); }
|
|
template <class T> void bar(volatile T &x) {}
|
|
|
|
void test_ints() {
|
|
volatile int x;
|
|
bar(x = 5);
|
|
bar(x += 5);
|
|
}
|
|
|
|
enum E { E_zero };
|
|
void test_enums() {
|
|
volatile E x;
|
|
bar(x = E_zero);
|
|
bar(x += E_zero); // expected-error {{incompatible type}}
|
|
}
|
|
}
|
|
|
|
int test2(int x) {
|
|
return x && 4; // expected-warning {{use of logical '&&' with constant operand}} \
|
|
// expected-note {{use '&' for a bitwise operation}} \
|
|
// expected-note {{remove constant to silence this warning}}
|
|
|
|
return x && sizeof(int) == 4; // no warning, RHS is logical op.
|
|
return x && true;
|
|
return x && false;
|
|
return x || true;
|
|
return x || false;
|
|
|
|
return x && (unsigned)0; // expected-warning {{use of logical '&&' with constant operand}} \
|
|
// expected-note {{use '&' for a bitwise operation}} \
|
|
// expected-note {{remove constant to silence this warning}}
|
|
|
|
return x || (unsigned)1; // expected-warning {{use of logical '||' with constant operand}} \
|
|
// expected-note {{use '|' for a bitwise operation}}
|
|
|
|
return x || 0; // expected-warning {{use of logical '||' with constant operand}} \
|
|
// expected-note {{use '|' for a bitwise operation}}
|
|
return x || 1; // expected-warning {{use of logical '||' with constant operand}} \
|
|
// expected-note {{use '|' for a bitwise operation}}
|
|
return x || -1; // expected-warning {{use of logical '||' with constant operand}} \
|
|
// expected-note {{use '|' for a bitwise operation}}
|
|
return x || 5; // expected-warning {{use of logical '||' with constant operand}} \
|
|
// expected-note {{use '|' for a bitwise operation}}
|
|
return x && 0; // expected-warning {{use of logical '&&' with constant operand}} \
|
|
// expected-note {{use '&' for a bitwise operation}} \
|
|
// expected-note {{remove constant to silence this warning}}
|
|
return x && 1; // expected-warning {{use of logical '&&' with constant operand}} \
|
|
// expected-note {{use '&' for a bitwise operation}} \
|
|
// expected-note {{remove constant to silence this warning}}
|
|
return x && -1; // expected-warning {{use of logical '&&' with constant operand}} \
|
|
// expected-note {{use '&' for a bitwise operation}} \
|
|
// expected-note {{remove constant to silence this warning}}
|
|
return x && 5; // expected-warning {{use of logical '&&' with constant operand}} \
|
|
// expected-note {{use '&' for a bitwise operation}} \
|
|
// expected-note {{remove constant to silence this warning}}
|
|
return x || (0); // expected-warning {{use of logical '||' with constant operand}} \
|
|
// expected-note {{use '|' for a bitwise operation}}
|
|
return x || (1); // expected-warning {{use of logical '||' with constant operand}} \
|
|
// expected-note {{use '|' for a bitwise operation}}
|
|
return x || (-1); // expected-warning {{use of logical '||' with constant operand}} \
|
|
// expected-note {{use '|' for a bitwise operation}}
|
|
return x || (5); // expected-warning {{use of logical '||' with constant operand}} \
|
|
// expected-note {{use '|' for a bitwise operation}}
|
|
return x && (0); // expected-warning {{use of logical '&&' with constant operand}} \
|
|
// expected-note {{use '&' for a bitwise operation}} \
|
|
// expected-note {{remove constant to silence this warning}}
|
|
return x && (1); // expected-warning {{use of logical '&&' with constant operand}} \
|
|
// expected-note {{use '&' for a bitwise operation}} \
|
|
// expected-note {{remove constant to silence this warning}}
|
|
return x && (-1); // expected-warning {{use of logical '&&' with constant operand}} \
|
|
// expected-note {{use '&' for a bitwise operation}} \
|
|
// expected-note {{remove constant to silence this warning}}
|
|
return x && (5); // expected-warning {{use of logical '&&' with constant operand}} \
|
|
// expected-note {{use '&' for a bitwise operation}} \
|
|
// expected-note {{remove constant to silence this warning}}
|
|
}
|
|
|
|
template<unsigned int A, unsigned int B> struct S
|
|
{
|
|
enum {
|
|
e1 = A && B,
|
|
e2 = A && 7 // expected-warning {{use of logical '&&' with constant operand}} \
|
|
// expected-note {{use '&' for a bitwise operation}} \
|
|
// expected-note {{remove constant to silence this warning}}
|
|
};
|
|
|
|
int foo() {
|
|
int x = A && B;
|
|
int y = B && 3; // expected-warning {{use of logical '&&' with constant operand}} \
|
|
// expected-note {{use '&' for a bitwise operation}} \
|
|
// expected-note {{remove constant to silence this warning}}
|
|
|
|
return x + y;
|
|
}
|
|
};
|
|
|
|
void test3() {
|
|
S<5, 8> s1;
|
|
S<2, 7> s2;
|
|
(void)s1.foo();
|
|
(void)s2.foo();
|
|
}
|
|
|
|
namespace pr16992 {
|
|
typedef int T;
|
|
unsigned getsz() {
|
|
return (sizeof T());
|
|
}
|
|
}
|
|
|
|
void test4() {
|
|
#define X 0
|
|
#define Y 1
|
|
bool r1 = X || Y;
|
|
|
|
#define Y2 2
|
|
bool r2 = X || Y2; // expected-warning {{use of logical '||' with constant operand}} \
|
|
// expected-note {{use '|' for a bitwise operation}}
|
|
}
|