Add allocation and garbage collection infrastructure.
Change-Id: I4b04cdfdf18afb75a7b0df87b509e8156b4a932b
diff --git a/src/offsets.cc b/src/offsets.cc
new file mode 100644
index 0000000..1dce268
--- /dev/null
+++ b/src/offsets.cc
@@ -0,0 +1,14 @@
+// Copyright 2011 Google Inc. All Rights Reserved.
+// Author: cshapiro@google.com (Carl Shapiro)
+
+#include "src/offsets.h"
+
+#include <iostream> // NOLINT
+
+namespace art {
+
+std::ostream& operator<<(std::ostream& os, const Offset& offs) {
+ return os << offs.Int32Value();
+}
+
+}