summaryrefslogtreecommitdiff
path: root/test/cfi
diff options
context:
space:
mode:
Diffstat (limited to 'test/cfi')
-rw-r--r--test/cfi/cross-dso/target_out_of_bounds.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/test/cfi/cross-dso/target_out_of_bounds.cpp b/test/cfi/cross-dso/target_out_of_bounds.cpp
index b7449c942..fbd664bce 100644
--- a/test/cfi/cross-dso/target_out_of_bounds.cpp
+++ b/test/cfi/cross-dso/target_out_of_bounds.cpp
@@ -20,9 +20,13 @@ int main(int argc, char *argv[]) {
// enough to handle unaddressable vtables. TODO: fix this.
void *empty = calloc(1, 128);
uintptr_t v = (uintptr_t)empty + 64;
- A *volatile p = new A();
- for (uintptr_t *q = (uintptr_t *)p; q < (uintptr_t *)(p + 1); ++q)
+ char *volatile p = reinterpret_cast<char *>(new A());
+ for (uintptr_t *q = (uintptr_t *)p; q < (uintptr_t *)(p + sizeof(A)); ++q)
*q = v;
+
+ // CHECK: runtime error: control flow integrity check for type 'A' failed during cast
+ A *volatile pa = reinterpret_cast<A *>(p);
+
// CHECK: untime error: control flow integrity check for type 'A' failed during virtual call
- p->f();
+ pa->f();
}