diff options
Diffstat (limited to 'compiler-rt/test/asan/TestCases/use-after-scope-loop-bug.cc')
| -rw-r--r-- | compiler-rt/test/asan/TestCases/use-after-scope-loop-bug.cc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/compiler-rt/test/asan/TestCases/use-after-scope-loop-bug.cc b/compiler-rt/test/asan/TestCases/use-after-scope-loop-bug.cc new file mode 100644 index 00000000000..6d8e8887064 --- /dev/null +++ b/compiler-rt/test/asan/TestCases/use-after-scope-loop-bug.cc @@ -0,0 +1,16 @@ +// RUN: %clangxx_asan -O1 -mllvm -asan-use-after-scope=1 %s -o %t && \ +// RUN: not %run %t 2>&1 | FileCheck %s +// +// FIXME: @llvm.lifetime.* are not emitted for x. +// XFAIL: * + +int *p; + +int main() { + // Variable goes in and out of scope. + for (int i = 0; i < 3; ++i) { + int x[3] = {i, i, i}; + p = x + i; + } + return *p; // BOOM +} |

