Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-10 08:36:53

0001 //===--- Util.h - Common Driver Utilities -----------------------*- C++ -*-===//
0002 //
0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0004 // See https://llvm.org/LICENSE.txt for license information.
0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
0006 //
0007 //===----------------------------------------------------------------------===//
0008 
0009 #ifndef LLVM_CLANG_DRIVER_UTIL_H
0010 #define LLVM_CLANG_DRIVER_UTIL_H
0011 
0012 #include "clang/Basic/LLVM.h"
0013 #include "llvm/ADT/DenseMap.h"
0014 
0015 namespace clang {
0016 
0017 namespace driver {
0018   class Action;
0019   class JobAction;
0020 
0021   /// ArgStringMap - Type used to map a JobAction to its result file.
0022   typedef llvm::DenseMap<const JobAction*, const char*> ArgStringMap;
0023 
0024   /// ActionList - Type used for lists of actions.
0025   typedef SmallVector<Action*, 3> ActionList;
0026 
0027 } // end namespace driver
0028 } // end namespace clang
0029 
0030 #endif