Xamarin Public Jenkins (auto-signing) f32dbaf0b2 Imported Upstream version 5.18.0.225
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
2018-12-21 19:01:49 +00:00

23 lines
720 B
C++

//===-- Line.cpp ----------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "llvm/DebugInfo/CodeView/Line.h"
using namespace llvm;
using namespace codeview;
LineInfo::LineInfo(uint32_t StartLine, uint32_t EndLine, bool IsStatement) {
LineData = StartLine & StartLineMask;
uint32_t LineDelta = EndLine - StartLine;
LineData |= (LineDelta << EndLineDeltaShift) & EndLineDeltaMask;
if (IsStatement) {
LineData |= StatementFlag;
}
}