diff options
| author | Timur Iskhodzhanov <timurrrr@google.com> | 2014-09-23 14:07:12 +0000 |
|---|---|---|
| committer | Timur Iskhodzhanov <timurrrr@google.com> | 2014-09-23 14:07:12 +0000 |
| commit | f6b889126c525facec29ce163b711a01c77e04b9 (patch) | |
| tree | dcbbf51870122cf5515b86572148227dac154639 /llvm/test/DebugInfo/COFF | |
| parent | bd8bd484c3b225a464d5bdbd30ce402c85b8b793 (diff) | |
| download | bcm5719-llvm-f6b889126c525facec29ce163b711a01c77e04b9.tar.gz bcm5719-llvm-f6b889126c525facec29ce163b711a01c77e04b9.zip | |
Fix a small typo in the test comment
llvm-svn: 218306
Diffstat (limited to 'llvm/test/DebugInfo/COFF')
| -rw-r--r-- | llvm/test/DebugInfo/COFF/multifile.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/DebugInfo/COFF/multifile.ll b/llvm/test/DebugInfo/COFF/multifile.ll index 488eedf7799..a1a435521b4 100644 --- a/llvm/test/DebugInfo/COFF/multifile.ll +++ b/llvm/test/DebugInfo/COFF/multifile.ll @@ -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: |

