mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Tidy up. Whitepsace.
llvm-svn: 140275
This commit is contained in:
parent
10002dcc07
commit
74679928e9
@ -49,7 +49,7 @@ namespace {
|
||||
static void SrcMgrDiagHandler(const SMDiagnostic &Diag, void *diagInfo) {
|
||||
SrcMgrDiagInfo *DiagInfo = static_cast<SrcMgrDiagInfo *>(diagInfo);
|
||||
assert(DiagInfo && "Diagnostic context not passed down?");
|
||||
|
||||
|
||||
// If the inline asm had metadata associated with it, pull out a location
|
||||
// cookie corresponding to which line the error occurred on.
|
||||
unsigned LocCookie = 0;
|
||||
@ -57,13 +57,13 @@ static void SrcMgrDiagHandler(const SMDiagnostic &Diag, void *diagInfo) {
|
||||
unsigned ErrorLine = Diag.getLineNo()-1;
|
||||
if (ErrorLine >= LocInfo->getNumOperands())
|
||||
ErrorLine = 0;
|
||||
|
||||
|
||||
if (LocInfo->getNumOperands() != 0)
|
||||
if (const ConstantInt *CI =
|
||||
dyn_cast<ConstantInt>(LocInfo->getOperand(ErrorLine)))
|
||||
LocCookie = CI->getZExtValue();
|
||||
}
|
||||
|
||||
|
||||
DiagInfo->DiagHandler(Diag, DiagInfo->DiagContext, LocCookie);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user