From df4eb2e5160c113f194cedf91749fe978e032321 Mon Sep 17 00:00:00 2001 From: Mikhail Glushenkov Date: Wed, 27 Oct 2010 09:09:10 +0000 Subject: [PATCH] 80-col violation. llvm-svn: 117443 --- lib/System/Win32/Signals.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/System/Win32/Signals.inc b/lib/System/Win32/Signals.inc index 3f33d89a031..5fb4d6c2c04 100644 --- a/lib/System/Win32/Signals.inc +++ b/lib/System/Win32/Signals.inc @@ -247,7 +247,8 @@ static LONG WINAPI LLVMUnhandledExceptionFilter(LPEXCEPTION_POINTERS ep) { fprintf(stderr, "%08lX", PC); // Print the parameters. Assume there are four. - fprintf(stderr, " (0x%08lX 0x%08lX 0x%08lX 0x%08lX)", StackFrame.Params[0], + fprintf(stderr, " (0x%08lX 0x%08lX 0x%08lX 0x%08lX)", + StackFrame.Params[0], StackFrame.Params[1], StackFrame.Params[2], StackFrame.Params[3]); // Verify the PC belongs to a module in this process.