1 | // RUN: %clang_cc1 -std=c++17 -fsanitize=function -emit-llvm -triple x86_64-linux-gnu %s -o - | FileCheck %s |
2 | |
3 | // Check that typeinfo recorded in function prolog doesn't have "Do" noexcept |
4 | // qualifier in its mangled name. |
5 | // CHECK: @[[RTTI:[0-9]+]] = private constant i8* bitcast ({ i8*, i8* }* @_ZTIFvvE to i8*) |
6 | // CHECK: define void @_Z1fv() #{{.*}} prologue <{ i32, i32 }> <{ i32 {{.*}}, i32 trunc (i64 sub (i64 ptrtoint (i8** @[[RTTI]] to i64), i64 ptrtoint (void ()* @_Z1fv to i64)) to i32) }> |
7 | void f() noexcept {} |
8 | |
9 | // CHECK: define void @_Z1gPDoFvvE |
10 | void g(void (*p)() noexcept) { |
11 | // Check that reference typeinfo at call site doesn't have "Do" noexcept |
12 | // qualifier in its mangled name, either. |
13 | // CHECK: icmp eq i8* %{{.*}}, bitcast ({ i8*, i8* }* @_ZTIFvvE to i8*), !nosanitize |
14 | p(); |
15 | } |
16 | |