commit | a876b5c0f5d6a522ad3020149599a4e4d5330fb9 | [log] [tgz] |
---|---|---|
author | Martin Storsjo <martin@martin.st> | Thu Nov 29 12:17:39 2018 +0000 |
committer | Martin Storsjo <martin@martin.st> | Thu Nov 29 12:17:39 2018 +0000 |
tree | 57ea7bc681d6dc04ba4bdcb53c4e4ee169ba02cf | |
parent | 373a4ccf6cdd69993fbcef7384b741373374269b [diff] [blame] |
[llvm-rc] Support EXSTYLE statement. Patch by Jacek Caban! Differential Revision: https://reviews.llvm.org/D55020 llvm-svn: 347858
diff --git a/llvm/tools/llvm-rc/ResourceScriptStmt.cpp b/llvm/tools/llvm-rc/ResourceScriptStmt.cpp index 728c24b..3257072 100644 --- a/llvm/tools/llvm-rc/ResourceScriptStmt.cpp +++ b/llvm/tools/llvm-rc/ResourceScriptStmt.cpp
@@ -283,5 +283,9 @@ return OS << "Style: " << Value << "\n"; } +raw_ostream &ExStyleStmt::log(raw_ostream &OS) const { + return OS << "ExStyle: " << Value << "\n"; +} + } // namespace rc } // namespace llvm