[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / clang / test / CodeGenCXX / ubsan-function-noexcept.cpp
blob454e373045c0b5bbbff3bab7ec9c5eb331ae2006
1 // RUN: %clang_cc1 -std=c++17 -fsanitize=function -emit-llvm -triple x86_64-linux-gnu %s -o - | FileCheck %s
3 /// Check the following two functions have the same func_sanitize metadata, i.e.
4 /// they have the same type hash despite the exception specifier.
5 // CHECK: define{{.*}} void @_Z1fv() #[[#]] !func_sanitize ![[FUNCSAN:.*]] {
6 // CHECK: define{{.*}} void @_Z10f_noexceptv() #[[#]] !func_sanitize
7 // CHECK-SAME: ![[FUNCSAN]] {
8 void f() {}
9 void f_noexcept() noexcept {}
11 // CHECK: define{{.*}} void @_Z1gPDoFvvE
12 void g(void (*p)() noexcept) {
13 // CHECK: icmp eq i32 %{{.*}}, -1056584962, !nosanitize
14 // CHECK: icmp eq i32 %{{.*}}, [[Hash:[-0-9]+]], !nosanitize
15 p();
18 // CHECK: ![[FUNCSAN]] = !{i32 -1056584962, i32 [[Hash]]}