File: ms-integer-static-data-members.cpp

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,998,520 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (53 lines) | stat: -rw-r--r-- 1,669 bytes parent folder | download | duplicates (21)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// RUN: %clang_cc1 -emit-llvm -triple=i386-pc-win32 %s -o - | FileCheck %s
// RUN: %clang_cc1 -emit-llvm -triple=x86_64-windows-msvc %s -o - | FileCheck %s

struct S {
  static const int NoInit_Ref;
  static const int Inline_NotDef_NotRef = 5;
  static const int Inline_NotDef_Ref = 5;
  static const int Inline_Def_NotRef = 5;
  static const int Inline_Def_Ref = 5;
  static const int OutOfLine_Def_NotRef;
  static const int OutOfLine_Def_Ref;
};

const int *foo1() {
  return &S::NoInit_Ref;
};

const int *foo2() {
  return &S::Inline_NotDef_Ref;
};

const int *foo3() {
  return &S::Inline_Def_Ref;
};

const int *foo4() {
    return &S::OutOfLine_Def_Ref;
};

const int S::Inline_Def_NotRef;
const int S::Inline_Def_Ref;
const int S::OutOfLine_Def_NotRef = 5;
const int S::OutOfLine_Def_Ref = 5;


// No initialization.
// CHECK-DAG: @"?NoInit_Ref@S@@2HB" = external dso_local constant i32

// Inline initialization, no real definiton, not referenced.
// CHECK-NOT: @"?Inline_NotDef_NotRef@S@@2HB" = {{.*}} constant i32 5

// Inline initialization, no real definiton, referenced.
// CHECK-DAG: @"?Inline_NotDef_Ref@S@@2HB" = linkonce_odr dso_local constant i32 5, comdat, align 4

// Inline initialization, real definiton, not referenced.
// CHECK-NOT: @"?Inline_Def_NotRef@S@@2HB" = dso_local constant i32 5, align 4

// Inline initialization, real definiton, referenced.
// CHECK-DAG: @"?Inline_Def_Ref@S@@2HB" = linkonce_odr dso_local constant i32 5, comdat, align 4

// Out-of-line initialization.
// CHECK-DAG: @"?OutOfLine_Def_NotRef@S@@2HB" = dso_local constant i32 5, align 4
// CHECK-DAG: @"?OutOfLine_Def_Ref@S@@2HB" = dso_local constant i32 5, align 4