Skip to content
  1. May 13, 2020
  2. May 12, 2020
    • Jonas Devlieghere's avatar
      [VirtualFileSystem] Add unit test that showcases another YAMLVFSWriter bug · 58bc507b
      Jonas Devlieghere authored
      This scenario generates another broken YAML mapping as illustrated below.
      
        {
          'type': 'directory',
          'name': "c",
          'contents': [
            ,
            {
              'type': 'directory',
              'name': "d",
              'contents': [
                ,
                {
                  'type': 'directory',
                  'name': "e",
                  'contents': [
                    {
                      'type': 'file',
                      'name': "f",
                      'external-contents': "//root/a/c/d/e/f"
                    }                    {
                      'type': 'file',
                      'name': "g",
                      'external-contents': "//root/a/c/d/e/g"
                    }
                  ]
                }
              ]
            }
          ]
        },
      58bc507b
    • Jonas Devlieghere's avatar
      [VirtualFileSystem] Add unit test that showcases YAMLVFSWriter bug · 59ba19c5
      Jonas Devlieghere authored
      This scenario generates a broken YAML mapping as illustrated below.
      
       {
         'type': 'directory',
         'name': "c",
         'contents': [
           {
             'type': 'file',
             'name': "d",
             'external-contents': "//root/a/c/d"
           }            {
             'type': 'file',
             'name': "e",
             'external-contents': "//root/a/c/e"
           }            {
             'type': 'file',
             'name': "f",
             'external-contents': "//root/a/c/f"
           }
         ]
       },
      59ba19c5
    • Alexey Lapshin's avatar
      [X86][ISelLowering] refactor Varargs handling in X86ISelLowering.cpp · aa1eb515
      Alexey Lapshin authored
      Summary:
      This patch refactors handling of VarArgs in
      X86TargetLowering::LowerFormalArguments.
      That refactoring was requested while reviewing
      D69372. Code related to varargs handling is removed
      from X86TargetLowering::LowerFormalArguments and
      is divided into smaller routines.
      
      Reviewed By: aeubanks
      
      Differential Revision: https://reviews.llvm.org/D74794
      aa1eb515
Loading