Constants for profile info type changed names to match the C++ ones.

llvm-svn: 13344
diff --git a/llvm/runtime/libprofile/BasicBlockTracing.c b/llvm/runtime/libprofile/BasicBlockTracing.c
index 0013633..e70dc05 100644
--- a/llvm/runtime/libprofile/BasicBlockTracing.c
+++ b/llvm/runtime/libprofile/BasicBlockTracing.c
@@ -23,7 +23,7 @@
  * and reset the cursor to point to the beginning of the buffer.
  */
 static void WriteAndFlushBBTraceData () {
-  write_profiling_data(BBTrace, ArrayStart, (ArrayCursor - ArrayStart));
+  write_profiling_data(BBTraceInfo, ArrayStart, (ArrayCursor - ArrayStart));
   ArrayCursor = ArrayStart;
 }