diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2018-03-17 15:12:52 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2018-03-17 15:12:52 +0000 |
commit | 7e71129be40ab6ba56e6993da8f1646cd5061cf2 (patch) | |
tree | a3e2894a41f08d6078c3d6a42625a4b41c4a4891 /llvm/bindings/go | |
parent | 161ccb0e1480faf6f480fd376bcb51bf316b8090 (diff) | |
download | bcm5719-llvm-7e71129be40ab6ba56e6993da8f1646cd5061cf2.tar.gz bcm5719-llvm-7e71129be40ab6ba56e6993da8f1646cd5061cf2.zip |
[bindings/go] Add a missing `,` in the test code to fix a go compile
failure.
llvm-svn: 327771
Diffstat (limited to 'llvm/bindings/go')
-rw-r--r-- | llvm/bindings/go/llvm/ir_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/bindings/go/llvm/ir_test.go b/llvm/bindings/go/llvm/ir_test.go index 48ea4e91ff5..5cd782b7d96 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 { |