HomeSort by relevance Sort by last modified time
    Searched refs:nonconst (Results 1 - 5 of 5) sorted by null

  /external/clang/test/CodeGen/
builtin-assume.c 4 int nonconst(void);
35 // CHECK-NOT: call i32 @nonconst()
38 __assume(nonconst());
41 __builtin_assume(nonconst());
  /external/clang/test/Sema/
builtin-assume.c 4 int nonconst(void);
12 __assume(nonconst() > 2); //expected-warning {{the argument to '__assume' has side effects that will be discarded}}
21 __builtin_assume(nonconst() > 2); //expected-warning {{the argument to '__builtin_assume' has side effects that will be discarded}}
  /external/clang/test/SemaCXX/
i-c-e-cxx.cpp 65 const int nonconst = 1.0; // expected-note {{declared here}} variable
66 int arr[nonconst]; // expected-warning {{folded to constant array as an extension}} expected-note {{initializer of 'nonconst' is not a constant expression}}
  /external/clang/test/CXX/expr/expr.const/
p3-0x.cpp 4 int nonconst = 8; // expected-note 3 {{here}} variable
5 enum NonConstE : unsigned char { NCE = nonconst }; // expected-error {{enumerator value is not a constant expression}} expected-note {{read of non-const}}
6 template<int = nonconst> struct NonConstT {}; // expected-error {{non-type template argument is not a constant expression}} expected-note {{read of non-const}}
8 switch (nonconst) {
9 case nonconst: // expected-error {{case value is not a constant expression}} expected-note {{read of non-const}}
  /external/tensorflow/tensorflow/core/grappler/optimizers/
constant_folding_test.cc 3522 Output nonconst = local
    [all...]

Completed in 438 milliseconds