Files
clang-p2996/clang/test/CodeGenCXX/cfi-vcall-check-after-args.cpp
hyeongyu kim fd9b099906 Revert "[Clang/Test]: Rename enable_noundef_analysis to disable-noundef-analysis and turn it off by default"
This reverts commit aacfbb953e.

Revert "Fix lit test failures in CodeGenCoroutines"

This reverts commit 63fff0f5bf.
2021-11-09 02:15:55 +09:00

13 lines
310 B
C++

// RUN: %clang_cc1 -flto -flto-unit -triple x86_64-unknown-linux -fvisibility hidden -fsanitize=cfi-vcall -fsanitize-trap=cfi-vcall -emit-llvm -o - %s | FileCheck %s
struct A {
virtual void f(int);
};
int g();
void f(A *a) {
// CHECK: call i32 @_Z1gv()
// CHECK: call i1 @llvm.type.test
a->f(g());
}