summaryrefslogtreecommitdiff
path: root/bindings
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2018-03-17 15:12:52 +0000
committerChandler Carruth <chandlerc@gmail.com>2018-03-17 15:12:52 +0000
commit2901b0fdfcaa29ba83afda32287b89e6dc4a0977 (patch)
tree5b5873f8ae64edc40b1514e0933c96017b413d46 /bindings
parent10c992c085d6e52c843bdc51c56cfcddcdb5611f (diff)
[bindings/go] Add a missing `,` in the test code to fix a go compile
failure. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@327771 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings')
-rw-r--r--bindings/go/llvm/ir_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/go/llvm/ir_test.go b/bindings/go/llvm/ir_test.go
index 48ea4e91ff5..5cd782b7d96 100644
--- a/bindings/go/llvm/ir_test.go
+++ b/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 {