Add a newline, which is missing according to go fmt.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@362888
91177308-0d34-0410-b5e6-
96231b3b80d8
func (b Builder) SetCurrentDebugLocation(line, col uint, scope, inlinedAt Metadata) {
C.LLVMGoSetCurrentDebugLocation(b.C, C.unsigned(line), C.unsigned(col), scope.C, inlinedAt.C)
}
+
// Get current debug location. Please do not call this function until setting debug location with SetCurrentDebugLocation()
func (b Builder) GetCurrentDebugLocation() (loc DebugLoc) {
md := C.LLVMGoGetCurrentDebugLocation(b.C)