r278891 - Add missing close brace to fix Windows bots. Oops :(
Richard Smith via cfe-commits
cfe-commits at lists.llvm.org
Tue Aug 16 19:22:39 PDT 2016
Author: rsmith
Date: Tue Aug 16 21:22:39 2016
New Revision: 278891
URL: http://llvm.org/viewvc/llvm-project?rev=278891&view=rev
Log:
Add missing close brace to fix Windows bots. Oops :(
Modified:
cfe/trunk/tools/driver/cc1_main.cpp
Modified: cfe/trunk/tools/driver/cc1_main.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/driver/cc1_main.cpp?rev=278891&r1=278890&r2=278891&view=diff
==============================================================================
--- cfe/trunk/tools/driver/cc1_main.cpp (original)
+++ cfe/trunk/tools/driver/cc1_main.cpp Tue Aug 16 21:22:39 2016
@@ -124,7 +124,7 @@ static void ensureSufficientStack() {
ensureStackAddressSpace();
}
#else
-static void ensureSufficientStack() {
+static void ensureSufficientStack() {}
#endif
int cc1_main(ArrayRef<const char *> Argv, const char *Argv0, void *MainAddr) {
More information about the cfe-commits
mailing list