bolt/deps/llvm-18.1.8/clang/test/CodeGenCXX/naked.cpp
2025-02-14 19:21:04 +01:00

13 lines
362 B
C++

// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
// RUN: %clang_cc1 -triple x86_64-windows -emit-llvm %s -o - | FileCheck %s
class TestNaked {
public:
void NakedFunction();
};
__attribute__((naked)) void TestNaked::NakedFunction() {
// CHECK-LABEL: define {{(dso_local )?}}{{(x86_thiscallcc )?}}void @
// CHECK: call void asm sideeffect
asm("");
}