[llvm] r362888 - [NFC] Test commit

Ayke van Laethem via llvm-commits llvm-commits at lists.llvm.org
Sat Jun 8 14:42:00 PDT 2019


Author: aykevl
Date: Sat Jun  8 14:42:00 2019
New Revision: 362888

URL: http://llvm.org/viewvc/llvm-project?rev=362888&view=rev
Log:
[NFC] Test commit

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

Modified:
    llvm/trunk/bindings/go/llvm/ir.go

Modified: llvm/trunk/bindings/go/llvm/ir.go
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/bindings/go/llvm/ir.go?rev=362888&r1=362887&r2=362888&view=diff
==============================================================================
--- llvm/trunk/bindings/go/llvm/ir.go (original)
+++ llvm/trunk/bindings/go/llvm/ir.go Sat Jun  8 14:42:00 2019
@@ -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)




More information about the llvm-commits mailing list