File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ namespace llvm {
24
24
// / When available, it can answer queries about what is at a given
25
25
// / file location, as well as where in a file a given IR construct
26
26
// / is.
27
- // /
27
+ // /
28
28
// / This information is optionally emitted by the LLParser while
29
29
// / it reads LLVM textual IR.
30
30
class AsmParserContext {
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ int LLLexer::getNextChar() {
180
180
if (CurPtr == CurBuf.end ())
181
181
return EOF;
182
182
// Increment line number if this is the first character after a newline
183
- if (CurPtr > CurBuf.begin () && *(CurPtr- 1 ) == ' \n ' ){
183
+ if (CurPtr > CurBuf.begin () && *(CurPtr - 1 ) == ' \n ' ) {
184
184
CurLineNum++;
185
185
CurColNum = 0 ;
186
186
} else
You can’t perform that action at this time.
0 commit comments