Skip to content

Commit b0c5318

Browse files
committed
Fix clang format
1 parent ee39ed1 commit b0c5318

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

llvm/include/llvm/AsmParser/AsmParserContext.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace llvm {
2424
/// When available, it can answer queries about what is at a given
2525
/// file location, as well as where in a file a given IR construct
2626
/// is.
27-
///
27+
///
2828
/// This information is optionally emitted by the LLParser while
2929
/// it reads LLVM textual IR.
3030
class AsmParserContext {

llvm/lib/AsmParser/LLLexer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ int LLLexer::getNextChar() {
180180
if (CurPtr == CurBuf.end())
181181
return EOF;
182182
// 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') {
184184
CurLineNum++;
185185
CurColNum = 0;
186186
} else

0 commit comments

Comments
 (0)