commit | f4e2c73fa71cd205324882e0bd1ca48ecd982d55 | [log] [tgz] |
---|---|---|
author | Nick Kledzik <kledzik@apple.com> | Thu Mar 15 23:36:24 2012 +0000 |
committer | Nick Kledzik <kledzik@apple.com> | Thu Mar 15 23:36:24 2012 +0000 |
tree | 89d2dc948f9174c05673a0133d50c7c4cd5648af | |
parent | 6f87b44fe378184316b9e7bfdd2316d3ce80eac7 [diff] [blame] |
Add Pass to instantiate GOT entries llvm-svn: 152874
diff --git a/lld/lib/Core/YamlWriter.cpp b/lld/lib/Core/YamlWriter.cpp index 2a9e050..bd253b4 100644 --- a/lld/lib/Core/YamlWriter.cpp +++ b/lld/lib/Core/YamlWriter.cpp
@@ -305,6 +305,9 @@ for (unsigned int i=0; i < arr.size(); ++i) { if ( needComma ) out << ", "; + if ( ((i % 12) == 0) && (i != 0) ) { + out << "\n "; + } out << hexdigit(arr[i] >> 4); out << hexdigit(arr[i] & 0x0F); needComma = true;