From 7e71129be40ab6ba56e6993da8f1646cd5061cf2 Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Sat, 17 Mar 2018 15:12:52 +0000 Subject: [PATCH] [bindings/go] Add a missing `,` in the test code to fix a go compile failure. llvm-svn: 327771 --- llvm/bindings/go/llvm/ir_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/bindings/go/llvm/ir_test.go b/llvm/bindings/go/llvm/ir_test.go index 48ea4e91ff51..5cd782b7d96f 100644 --- a/llvm/bindings/go/llvm/ir_test.go +++ b/llvm/bindings/go/llvm/ir_test.go @@ -89,7 +89,7 @@ func TestAttributes(t *testing.T) { "uwtable", "zeroext", "cold", - "nocf_check" + "nocf_check", } for _, name := range attrTests {