HomeSort by relevance Sort by last modified time
    Searched defs:vla (Results 1 - 15 of 15) sorted by null

  /external/clang/test/CodeGen/
debug-info-vla.c 7 // CHECK: ![[VAR]] = !DILocalVariable(name: "vla",{{.*}} line: [[@LINE+2]]
9 int vla[s]; local
12 vla[i] = i*i;
varargs.c 18 void vla(int n, ...) function
vla.c 5 // Extremely basic VLA test
18 int vla[x]; local
19 return vla[x-1];
114 // VLA captures.
  /external/clang/test/Sema/
c11-typedef-redef.c 12 typedef int vla[N]; // expected-note{{previous definition is here}} typedef
13 typedef int vla[N]; // expected-error{{redefinition of typedef for variably-modified type 'int [N]'}} typedef
  /external/clang/test/SemaCXX/
c99-variable-length-array-cxx11.cpp 20 void vla(int N) { function
c99-variable-length-array.cpp 16 void vla(int N) { function
66 // Template argument deduction does not allow deducing a size from a VLA.
  /external/clang/test/Analysis/
cxx-crashes.cpp 62 void vla(int n) { function
68 // This struct is POD, though, so it should be fine to put it in a VLA.
vla.c 8 int vla[x]; // expected-warning{{Declared variable-length array (VLA) has zero size}} local
13 int vla[x]; // expected-warning{{Declared variable-length array (VLA) uses a garbage value as its size}} local
18 int vla[x]; // expected-warning{{Declared variable-length array (VLA) has negative size}} local
22 int vla[x]; // no-warning local
35 int vla[x]; // expected-warning{{Declared variable-length array (VLA) has negative size}} local
40 int vla[x]; // no-warnin local
45 int vla[x]; \/\/ expected-warning{{Declared variable-length array (VLA) has negative size}} local
50 int vla[x]; \/\/ no-warning local
55 int vla[x + 2]; \/\/ no-warning local
60 int vla[x - 2]; \/\/ expected-warning{{Declared variable-length array (VLA) has negative size}} local
65 int vla[x]; \/\/ no-warning local
70 int vla[x]; \/\/ expected-warning{{Declared variable-length array (VLA) has negative size}} local
80 int vla[x]; \/\/ no-warning local
    [all...]
outofbound.c 58 void vla(int a) { function
padding_c.c 112 // Currently ignoring VLA padding problems. Still need to make sure we don't
118 int vla[]; member in struct:HoldsVLA
taint-generic.c 184 int vla[x]; // expected-warning{{Declared variable-length array (VLA) has tainted size}} local
  /external/clang/test/CXX/temp/temp.arg/temp.arg.type/
p2.cpp 18 int vla[n]; local
19 f0(0, vla); // expected-error{{no matching function for call to 'f0'}}
  /external/clang/test/OpenMP/
target_map_codegen.cpp 608 double vla[2][a]; local
    [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp 355 // We can't have a VLA here, but we can have a pointer to a VLA,
357 // Make sure to evaluate VLA bounds now so that we have them for later.
1077 llvm::AllocaInst *vla = Builder.CreateAlloca(llvmTy, elementCount, "vla"); local
    [all...]
CodeGenFunction.cpp 1387 const VariableArrayType *vla; local
1566 const VariableArrayType *vla = getContext().getAsVariableArrayType(type); local
    [all...]

Completed in 191 milliseconds