Skip to content
  1. Jul 11, 2005
  2. Jul 10, 2005
  3. Jul 09, 2005
  4. Jul 08, 2005
    • Reid Spencer's avatar
      Ensure that functions like isDirectory don't fail if the file doesn't · 2d85f569
      Reid Spencer authored
      exist but just return false instead.
      
      llvm-svn: 22361
      2d85f569
    • Reid Spencer's avatar
      Make sure we don't error out if an invalid path is used, just simply · 03f6f7a5
      Reid Spencer authored
      exit from isBytecodeLPath with "false".
      
      llvm-svn: 22360
      03f6f7a5
    • Reid Spencer's avatar
      Two changes: · d28e432c
      Reid Spencer authored
      1. Use isValid() to check validity of the resulting path name in the
         eraseSuffix even though we can't think of a case where eraseSuffix could
         possibly cause an invalid path name.
      2. Rewrite isValid() to not use the deprecated realpath function any more.
         It now just uses isascii to make sure all the characters are legit.
      
      llvm-svn: 22359
      d28e432c
    • Chris Lattner's avatar
      Add support for emitting a .data section and .bss section. · 748de6e2
      Chris Lattner authored
      Add support for emitting external and .bss symbols.
      
      llvm-svn: 22358
      748de6e2
    • Jeff Cohen's avatar
      Stamp out tabs · f5067761
      Jeff Cohen authored
      llvm-svn: 22357
      f5067761
    • Jeff Cohen's avatar
      Make Win32 implementation conform to new paradigm · 0e1d7354
      Jeff Cohen authored
      llvm-svn: 22356
      0e1d7354
    • Jeff Cohen's avatar
      Fix eraseSuffix() · 4c24144d
      Jeff Cohen authored
      llvm-svn: 22355
      4c24144d
    • Reid Spencer's avatar
      Final Changes For PR495: · af48d864
      Reid Spencer authored
      This chagne just renames some sys::Path methods to ensure they are not
      misused. The Path documentation now divides methods into two dimensions:
      Path/Disk and accessor/mutator. Path accessors and mutators only operate
      on the Path object itself without making any disk accesses. Disk accessors
      and mutators will also access or modify the file system. Because of the
      potentially destructive nature of disk mutators, it was decided that all
      such methods should end in the work "Disk" to ensure the user recognizes
      that the change will occur on the file system. This patch makes that
      change. The method name changes are:
      
      makeReadable        -> makeReadableOnDisk
      makeWriteable       -> makeWriteableOnDisk
      makeExecutable      -> makeExecutableOnDisk
      setStatusInfo       -> setStatusInfoOnDisk
      createDirectory     -> createDirectoryOnDisk
      createFile          -> createFileOnDisk
      createTemporaryFile -> createTemporaryFileOnDisk
      destroy             -> eraseFromDisk
      rename              -> renamePathOnDisk
      
      These changes pass the Linux Deja Gnu tests.
      
      llvm-svn: 22354
      af48d864
    • Jeff Cohen's avatar
      Fix VC++ breakage · 215db904
      Jeff Cohen authored
      llvm-svn: 22353
      215db904
    • Jeff Cohen's avatar
      fix typo · 941500dc
      Jeff Cohen authored
      llvm-svn: 22352
      941500dc
    • Nate Begeman's avatar
      Add support for assembling .s files on mac os x for intel · b62a4c8d
      Nate Begeman authored
      Add support for running bugpoint on mac os x for intel
      
      llvm-svn: 22351
      b62a4c8d
    • Reid Spencer's avatar
      Changes to mimic those in Unix/Path.inc in support of PR495. This hasn't · 17c1bd37
      Reid Spencer authored
      been compiled or tested.
      
      llvm-svn: 22350
      17c1bd37
    • Reid Spencer's avatar
      For PR495: · c9c0473f
      Reid Spencer authored
      Get rid of the difference between file paths and directory paths. The Path
      class now simply stores a path that can refer to either a file or a
      directory. This required various changes in the implementation and interface
      of the class with the corresponding impact to its users. Doxygen comments were
      also updated to reflect these changes. Interface changes are:
      
      appendDirectory -> appendComponent
      appendFile -> appendComponent
      elideDirectory -> eraseComponent
      elideFile -> eraseComponent
      elideSuffix -> eraseSuffix
      renameFile -> rename
      setDirectory -> set
      setFile -> set
      
      Changes pass Dejagnu and llvm-test/SingleSource tests.
      
      llvm-svn: 22349
      c9c0473f
  5. Jul 07, 2005
Loading