llvm-project/clang/test/CodeGen/pr52782-stdcall-func-decl.cpp
David Blaikie 4821508d4d Revert "DebugInfo: Fully integrate ctor type homing into 'limited' debug info"
Reverting to simplify some Google-internal rollout issues. Will recommit
in a week or two.

This reverts commit 517bbc64dbe493644eff8d55fd9566435e930520.
2022-06-24 17:07:47 +00:00

11 lines
418 B
C++

// RUN: %clang_cc1 -triple i686-w64-windows-gnu -o - -emit-llvm -debug-info-kind=constructor %s | FileCheck %s
enum nsresult {};
class NotNull;
class nsICanvasRenderingContextInternal {
// CHECK: !DISubprogram(name: "InitializeWithDrawTarget", linkageName: "\01__ZN33nsICanvasRenderingContextInternal24InitializeWithDrawTargetE7NotNull@4"
nsresult __stdcall InitializeWithDrawTarget(NotNull);
} nsTBaseHashSet;