]> granicus.if.org Git - llvm/commitdiff
[NFC] Test commit
authorAyke van Laethem <aykevanlaethem@gmail.com>
Sat, 8 Jun 2019 21:42:00 +0000 (21:42 +0000)
committerAyke van Laethem <aykevanlaethem@gmail.com>
Sat, 8 Jun 2019 21:42:00 +0000 (21:42 +0000)
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

bindings/go/llvm/ir.go

index 555055f5997e05712d27d07fa1fd1a5ba440965a..29dabc67cfab0bc0d154dc17fd81aa057515c0a6 100644 (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)