Skip to content

Commit

Permalink
FuzzerCLI.h - reduce StringRef.h include to forward declaration. NFC.
Browse files Browse the repository at this point in the history
  • Loading branch information
RKSimon committed May 12, 2020
1 parent e143253 commit 24ac6a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion llvm/include/llvm/FuzzMutate/FuzzerCLI.h
Expand Up @@ -14,12 +14,13 @@
#ifndef LLVM_FUZZMUTATE_FUZZER_CLI_H
#define LLVM_FUZZMUTATE_FUZZER_CLI_H

#include "llvm/ADT/StringRef.h"
#include "llvm/IR/LLVMContext.h"
#include "llvm/Support/DataTypes.h"

namespace llvm {

class StringRef;

/// Parse cl::opts from a fuzz target commandline.
///
/// This handles all arguments after -ignore_remaining_args=1 as cl::opts.
Expand Down
1 change: 1 addition & 0 deletions llvm/lib/FuzzMutate/FuzzerCLI.cpp
Expand Up @@ -7,6 +7,7 @@
//===----------------------------------------------------------------------===//

#include "llvm/FuzzMutate/FuzzerCLI.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/ADT/Triple.h"
#include "llvm/Bitcode/BitcodeReader.h"
#include "llvm/Bitcode/BitcodeWriter.h"
Expand Down

0 comments on commit 24ac6a2

Please sign in to comment.