Skip to content

Commit 327ecfb

Browse files
committed
Merge pull request #2798 from erica/replicious
- Fixed line continuation error in CMakeLists.txt. - Updated integrated REPL warning for compiler and stdlib development use recommendations
2 parents 01ad840 + 1cd06c4 commit 327ecfb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

benchmark/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,7 @@ runcmd(COMMAND "xcrun" "-toolchain" "${SWIFT_DARWIN_XCRUN_TOOLCHAIN}" "-f" "clan
137137
# You have to delete CMakeCache.txt in the swift build to force a
138138
# reconfiguration.
139139
set(SWIFT_EXTRA_BENCH_CONFIGS CACHE STRING
140-
"A semicolon separated list of benchmark configurations. \
141-
Available configurations: <Optlevel>_SINGLEFILE, <Optlevel>_MULTITHREADED")
140+
"A semicolon separated list of benchmark configurations. Available configurations: <Optlevel>_SINGLEFILE, <Optlevel>_MULTITHREADED")
142141

143142
# Syntax for an optset: <optimization-level>_<configuration>
144143
# where "_<configuration>" is optional.

lib/Immediate/REPL.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -984,7 +984,8 @@ class REPLEnvironment {
984984
if (llvm::sys::Process::StandardInIsUserInput())
985985
llvm::outs() <<
986986
"*** You are running Swift's integrated REPL, ***\n"
987-
"*** intended for testing purposes only. ***\n"
987+
"*** intended for compiler and stdlib ***\n"
988+
"*** development and testing purposes only. ***\n"
988989
"*** The full REPL is built as part of LLDB. ***\n"
989990
"*** Type ':help' for assistance. ***\n";
990991
}

0 commit comments

Comments
 (0)