[llvm] r218306 - Fix a small typo in the test comment

Timur Iskhodzhanov timurrrr at google.com
Tue Sep 23 07:07:12 PDT 2014


Author: timurrrr
Date: Tue Sep 23 09:07:12 2014
New Revision: 218306

URL: http://llvm.org/viewvc/llvm-project?rev=218306&view=rev
Log:
Fix a small typo in the test comment

Modified:
    llvm/trunk/test/DebugInfo/COFF/multifile.ll

Modified: llvm/trunk/test/DebugInfo/COFF/multifile.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/COFF/multifile.ll?rev=218306&r1=218305&r2=218306&view=diff
==============================================================================
--- llvm/trunk/test/DebugInfo/COFF/multifile.ll (original)
+++ llvm/trunk/test/DebugInfo/COFF/multifile.ll Tue Sep 23 09:07:12 2014
@@ -7,13 +7,13 @@
 ; D:\input.c:
 ;  1 void g(void);
 ;  2
-;  3 void f() {
+;  3 void f(void) {
 ;  4 #line 1 "one.c"
-;  5   g(void);
+;  5   g();
 ;  6 #line 2 "two.c"
-;  7   g(void);
+;  7   g();
 ;  8 #line 7 "one.c"
-;  9   g(void);
+;  9   g();
 ; 10 }
 
 ; X86-LABEL: _f:





More information about the llvm-commits mailing list