diff options
Diffstat (limited to 'test/Feature/ubsan/ubsan_float_cast_overflow.c')
-rw-r--r-- | test/Feature/ubsan/ubsan_float_cast_overflow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Feature/ubsan/ubsan_float_cast_overflow.c b/test/Feature/ubsan/ubsan_float_cast_overflow.c index ad17c95c..707a9782 100644 --- a/test/Feature/ubsan/ubsan_float_cast_overflow.c +++ b/test/Feature/ubsan/ubsan_float_cast_overflow.c @@ -14,7 +14,7 @@ int main() { // klee_make_symbolic(&f, sizeof(f), "f"); - // CHECK: KLEE: ERROR: {{.*}}runtime/Sanitizer/ubsan/ubsan_handlers.cpp:34: float-cast-overflow + // CHECK: KLEE: ERROR: {{.*}}runtime/Sanitizer/ubsan/ubsan_handlers.cpp:{{[0-9]+}}: float-cast-overflow result = f + 0x80; return 0; } |