[NFC] Test commit

Add a newline, which is missing according to go fmt.

llvm-svn: 362888
This commit is contained in:
Ayke van Laethem 2019-06-08 21:42:00 +00:00
parent 4cc6d72bb4
commit 648c92dcb4
1 changed files with 1 additions and 0 deletions

View File

@ -1303,6 +1303,7 @@ type DebugLoc struct {
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)