Go to file
Tobias Grosser 5416a0395f Adjust multidim test cases to not access out-of-bound memory
We do this currently only for test cases where we have integer offsets that
clearly access array dimensions out-of-bound.

-;   for (long i = 0; i < n; i++)
-;     for (long j = 0; j < m; j++)
-;       for (long k = 0; k < o; k++)
+;   for (long i = 0; i < n - 3; i++)
+;     for (long j = 4; j < m; j++)
+;       for (long k = 0; k < o - 7; k++)
 ;         A[i+3][j-4][k+7] = 1.0;

This will be helpful if we later want to simplify the access functions under the
assumption that they do not access memory out of bounds.

llvm-svn: 210179
2014-06-04 11:47:54 +00:00
clang [OPENMP] Small comment and reformatting fixes. 2014-06-04 07:53:32 +00:00
clang-tools-extra clang-tidy: Make use-override tests stricter. 2014-06-04 08:47:25 +00:00
compiler-rt Disable unstable test on ARM 2014-06-04 00:06:41 +00:00
debuginfo-tests relax testcase for LLDB output format compatibility. 2014-03-19 23:06:18 +00:00
libclc Fix build broken by LLVM commit r209103 2014-06-03 15:43:57 +00:00
libcxx Add a note about debug mode being non-functional 2014-06-04 04:49:49 +00:00
libcxxabi Add test case for inherited exceptions 2014-06-03 21:50:11 +00:00
lld Initial set of Makefiles 2014-06-04 09:54:07 +00:00
lldb Fix a couple minor typos in $qMemoryRegionInfo packet docs. 2014-06-04 05:07:40 +00:00
llvm Fix gcc -Wparentheses warning. 2014-06-04 11:21:11 +00:00
openmp CMake: remove duplicated source file from list 2014-06-02 13:09:24 +00:00
polly Adjust multidim test cases to not access out-of-bound memory 2014-06-04 11:47:54 +00:00