forked from OSchip/llvm-project
parent
c44472a5bc
commit
2714c49e96
|
@ -130,7 +130,7 @@ public:
|
|||
const FrontendInputFile &getCurrentInput() const {
|
||||
return CurrentInput;
|
||||
}
|
||||
|
||||
|
||||
const StringRef getCurrentFile() const {
|
||||
assert(!CurrentInput.isEmpty() && "No current file!");
|
||||
return CurrentInput.getFile();
|
||||
|
@ -157,7 +157,7 @@ public:
|
|||
/// @name Supported Modes
|
||||
/// @{
|
||||
|
||||
/// \brief Is this action invoked on a model file?
|
||||
/// \brief Is this action invoked on a model file?
|
||||
///
|
||||
/// Model files are incomplete translation units that relies on type
|
||||
/// information from another translation unit. Check ParseModelFileAction for
|
||||
|
@ -251,10 +251,10 @@ public:
|
|||
const std::vector<std::string> &arg) = 0;
|
||||
|
||||
enum ActionType {
|
||||
Cmdline, //< Action is determined by the cc1 command-line
|
||||
ReplaceAction, //< Replace the main action
|
||||
AddBeforeMainAction, //< Execute the action before the main action
|
||||
AddAfterMainAction //< Execute the action after the main action
|
||||
Cmdline, ///< Action is determined by the cc1 command-line
|
||||
ReplaceAction, ///< Replace the main action
|
||||
AddBeforeMainAction, ///< Execute the action before the main action
|
||||
AddAfterMainAction ///< Execute the action after the main action
|
||||
};
|
||||
/// \brief Get the action type for this plugin
|
||||
///
|
||||
|
|
Loading…
Reference in New Issue