reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    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
# RUN: yaml2obj < %s > %t.obj
# RUN: llvm-readobj --codeview %t.obj | FileCheck %s

# CHECK:         Kind: S_UNAMESPACE (0x1124)
# CHECK-NEXT:    Namespace: __vc_attributes

--- !COFF
header:          
  Machine:         IMAGE_FILE_MACHINE_AMD64
  Characteristics: [  ]
sections:        
  - Name:            '.debug$S'
    Characteristics: [ IMAGE_SCN_CNT_INITIALIZED_DATA, IMAGE_SCN_MEM_DISCARDABLE, IMAGE_SCN_MEM_READ ]
    Alignment:       1
    Subsections:     
      - !Symbols
        Records:         
          - Kind:            S_OBJNAME
            ObjNameSym:      
              Signature:       0
              ObjectName:      'SimpleFunction.obj'
          - Kind:            S_COMPILE3
            Compile3Sym:     
              Flags:           [ SecurityChecks, HotPatch ]
              Machine:         X64
              FrontendMajor:   19
              FrontendMinor:   14
              FrontendBuild:   26433
              FrontendQFE:     0
              BackendMajor:    19
              BackendMinor:    14
              BackendBuild:    26433
              BackendQFE:      0
              Version:         'Microsoft (R) Optimizing Compiler'
          - Kind:            S_UNAMESPACE
            UsingNamespaceSym: 
              Namespace:       __vc_attributes
          - Kind:            S_UNAMESPACE
            UsingNamespaceSym: 
              Namespace:       helper_attributes
          - Kind:            S_UNAMESPACE
            UsingNamespaceSym: 
              Namespace:       atl
          - Kind:            S_UNAMESPACE
            UsingNamespaceSym: 
              Namespace:       std
      - !StringTable
        Strings:
          - 'SimpleFunction.c'
symbols:         
...