[RISCV] Add Qualcomm uC Xqcics(Conditional Select) extension (#119504)
[llvm-project.git] / clang / tools / clang-fuzzer / fuzzer-initialize / fuzzer_initialize.h
blob9f32d6396bf0eced7af1552b05ca0b69582a9049
1 //==-- fuzzer_initialize.h - Fuzz Clang ------------------------------------==//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // Defines a function that returns the command line arguments for a specific
10 // call to the fuzz target.
12 //===----------------------------------------------------------------------===//
14 #include <vector>
16 namespace clang_fuzzer {
17 const std::vector<const char *>& GetCLArgs();