[InstCombine] Signed saturation tests. NFC
[llvm-core.git] / tools / llvm-rc / ResourceScriptCppFilter.h
blob780db317c9f03a823ed51826e36241010af2cd32
1 //===-- ResourceScriptCppFilter.h ------------------------------*- C++ -*-===//
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 // This filters the input to llvm-rc for preprocessor markers, removing
10 // preprocessing directives that a preprocessor can output or leave behind.
12 // It also filters out any contribution from files named *.h or *.c, based
13 // on preprocessor line markers. When preprocessing RC files, the included
14 // headers can leave behind C declarations, that RC doesn't understand.
15 // Rc.exe simply discards anything that comes from files named *.h or *.h.
17 // https://msdn.microsoft.com/en-us/library/windows/desktop/aa381033(v=vs.85).aspx
19 //===---------------------------------------------------------------------===//
21 #ifndef LLVM_TOOLS_LLVMRC_RESOURCESCRIPTCPPFILTER_H
22 #define LLVM_TOOLS_LLVMRC_RESOURCESCRIPTCPPFILTER_H
24 #include "llvm/ADT/StringRef.h"
26 #include <string>
28 namespace llvm {
30 std::string filterCppOutput(StringRef Input);
32 } // namespace llvm
34 #endif