[llvm] r327771 - [bindings/go] Add a missing `, ` in the test code to fix a go compile

Chandler Carruth via llvm-commits llvm-commits at lists.llvm.org
Sat Mar 17 08:12:53 PDT 2018


Author: chandlerc
Date: Sat Mar 17 08:12:52 2018
New Revision: 327771

URL: http://llvm.org/viewvc/llvm-project?rev=327771&view=rev
Log:
[bindings/go] Add a missing `,` in the test code to fix a go compile
failure.

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

Modified: llvm/trunk/bindings/go/llvm/ir_test.go
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/bindings/go/llvm/ir_test.go?rev=327771&r1=327770&r2=327771&view=diff
==============================================================================
--- llvm/trunk/bindings/go/llvm/ir_test.go (original)
+++ llvm/trunk/bindings/go/llvm/ir_test.go Sat Mar 17 08:12:52 2018
@@ -89,7 +89,7 @@ func TestAttributes(t *testing.T) {
 		"uwtable",
 		"zeroext",
 		"cold",
-		"nocf_check"
+		"nocf_check",
 	}
 
 	for _, name := range attrTests {




More information about the llvm-commits mailing list