[PATCH] D18355: [llgo] Increment "Debug Info Version"

Andrew Wilkins via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 23 16:14:17 PDT 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL264212: [llgo] Increment "Debug Info Version" (authored by axw).

Changed prior to commit:
  http://reviews.llvm.org/D18355?vs=51293&id=51489#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D18355

Files:
  llgo/trunk/debug/debug.go

Index: llgo/trunk/debug/debug.go
===================================================================
--- llgo/trunk/debug/debug.go
+++ llgo/trunk/debug/debug.go
@@ -183,7 +183,7 @@
 		llvm.GlobalContext().MDNode([]llvm.Metadata{
 			llvm.ConstInt(llvm.Int32Type(), 1, false).ConstantAsMetadata(), // Error on mismatch
 			llvm.GlobalContext().MDString("Debug Info Version"),
-			llvm.ConstInt(llvm.Int32Type(), 2, false).ConstantAsMetadata(),
+			llvm.ConstInt(llvm.Int32Type(), 3, false).ConstantAsMetadata(),
 		}),
 	)
 	d.builder.Finalize()


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D18355.51489.patch
Type: text/x-patch
Size: 545 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160323/a9dd7546/attachment.bin>


More information about the llvm-commits mailing list