2022-10-06 12:38:56 +02:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-linux-gnu -std=c++20 %s -emit-llvm -o - | FileCheck %s --check-prefixes=ITANIUM,CHECK
|
|
|
|
// RUN: %clang_cc1 -triple x86_64-windows -std=c++20 %s -emit-llvm -o - | FileCheck %s --check-prefixes=MSABI,CHECK
|
2020-09-20 23:18:04 -07:00
|
|
|
|
|
|
|
struct S { char buf[32]; };
|
|
|
|
template<S s> constexpr const char *begin() { return s.buf; }
|
|
|
|
template<S s> constexpr const char *end() { return s.buf + __builtin_strlen(s.buf); }
|
|
|
|
|
2025-02-03 23:26:22 +13:00
|
|
|
namespace { struct T { char buf[32]; }; }
|
|
|
|
template<T t> constexpr const char* begin_anon() { return t.buf; }
|
|
|
|
|
2020-09-20 23:18:04 -07:00
|
|
|
// ITANIUM: [[HELLO:@_ZTAXtl1StlA32_cLc104ELc101ELc108ELc108ELc111ELc32ELc119ELc111ELc114ELc108ELc100EEEE]]
|
|
|
|
// MSABI: [[HELLO:@"[?][?]__N2US@@3D0GI@@0GF@@0GM@@0GM@@0GP@@0CA@@0HH@@0GP@@0HC@@0GM@@0GE@@0A@@0A@@0A@@0A@@0A@@0A@@0A@@0A@@0A@@0A@@0A@@0A@@0A@@0A@@0A@@0A@@0A@@0A@@0A@@0A@@0A@@@@@"]]
|
2023-03-14 18:12:19 +00:00
|
|
|
// ITANIUM-SAME: = linkonce_odr constant { <{ [11 x i8], [21 x i8] }> } { <{ [11 x i8], [21 x i8] }> <{ [11 x i8] c"hello world", [21 x i8] zeroinitializer }> }, comdat
|
|
|
|
// MSABI-SAME: = linkonce_odr dso_local constant { <{ [11 x i8], [21 x i8] }> } { <{ [11 x i8], [21 x i8] }> <{ [11 x i8] c"hello world", [21 x i8] zeroinitializer }> }, comdat
|
|
|
|
|
2020-09-20 23:18:04 -07:00
|
|
|
|
|
|
|
// ITANIUM: @p
|
|
|
|
// MSABI: @"?p@@3PEBDEB"
|
2022-10-06 12:38:56 +02:00
|
|
|
// CHECK-SAME: global ptr [[HELLO]]
|
2020-09-20 23:18:04 -07:00
|
|
|
const char *p = begin<S{"hello world"}>();
|
|
|
|
// ITANIUM: @q
|
|
|
|
// MSABI: @"?q@@3PEBDEB"
|
2022-10-06 12:38:56 +02:00
|
|
|
// CHECK-SAME: global ptr getelementptr (i8, ptr [[HELLO]], i64 11)
|
2020-09-20 23:18:04 -07:00
|
|
|
const char *q = end<S{"hello world"}>();
|
2025-02-03 23:26:22 +13:00
|
|
|
|
|
|
|
|
|
|
|
// CHECK: internal constant { <{ [10 x i8], [22 x i8] }> } { <{ [10 x i8], [22 x i8] }> <{ [10 x i8] c"hello anon", [22 x i8] zeroinitializer }> }
|
|
|
|
// CHECK-NOT: comdat
|
|
|
|
// ITANIUM: @r
|
|
|
|
// MSABI: @"?r@@3PEBDEB"
|
|
|
|
const char *r = begin_anon<T{"hello anon"}>();
|