forked from OSchip/llvm-project
[NFC] Test commit
Add a newline, which is missing according to go fmt. llvm-svn: 362888
This commit is contained in:
parent
4cc6d72bb4
commit
648c92dcb4
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue