[llvm-commits] [llvm] r165589 - in /llvm/trunk/lib/ExecutionEngine/IntelJITEvents: ittnotify_config.h ittnotify_types.h jitprofiling.c jitprofiling.h

Andrew Kaylor andrew.kaylor at intel.com
Tue Oct 9 18:48:52 PDT 2012


Author: akaylor
Date: Tue Oct  9 20:48:52 2012
New Revision: 165589

URL: http://llvm.org/viewvc/llvm-project?rev=165589&view=rev
Log:
Adding comments to clarify the reason for non-standard style in these files.
Patch committed on behalf of Kirill Uhanov

Modified:
    llvm/trunk/lib/ExecutionEngine/IntelJITEvents/ittnotify_config.h
    llvm/trunk/lib/ExecutionEngine/IntelJITEvents/ittnotify_types.h
    llvm/trunk/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c
    llvm/trunk/lib/ExecutionEngine/IntelJITEvents/jitprofiling.h

Modified: llvm/trunk/lib/ExecutionEngine/IntelJITEvents/ittnotify_config.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/ExecutionEngine/IntelJITEvents/ittnotify_config.h?rev=165589&r1=165588&r2=165589&view=diff
==============================================================================
--- llvm/trunk/lib/ExecutionEngine/IntelJITEvents/ittnotify_config.h (original)
+++ llvm/trunk/lib/ExecutionEngine/IntelJITEvents/ittnotify_config.h Tue Oct  9 20:48:52 2012
@@ -10,6 +10,11 @@
  * This file provides Intel(R) Performance Analyzer JIT (Just-In-Time) 
  * Profiling API internal config.
  *
+ * NOTE: This file comes in a style different from the rest of LLVM
+ * source base since  this is a piece of code shared from Intel(R)
+ * products.  Please do not reformat / re-style this code to make
+ * subsequent merges and contributions from the original source base eaiser.
+ *
  *===----------------------------------------------------------------------===*/
 #ifndef _ITTNOTIFY_CONFIG_H_
 #define _ITTNOTIFY_CONFIG_H_

Modified: llvm/trunk/lib/ExecutionEngine/IntelJITEvents/ittnotify_types.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/ExecutionEngine/IntelJITEvents/ittnotify_types.h?rev=165589&r1=165588&r2=165589&view=diff
==============================================================================
--- llvm/trunk/lib/ExecutionEngine/IntelJITEvents/ittnotify_types.h (original)
+++ llvm/trunk/lib/ExecutionEngine/IntelJITEvents/ittnotify_types.h Tue Oct  9 20:48:52 2012
@@ -1,11 +1,18 @@
-//===-- ittnotify_types.h -  Intel(R) Performance Analyzer JIT (Just-In-Time) Profiling API internal types.  ---------===//
-//
-//                     The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
+/*===-- ittnotify_types.h - JIT Profiling API internal types--------*- C -*-===*
+ *
+ *                     The LLVM Compiler Infrastructure
+ *
+ * This file is distributed under the University of Illinois Open Source
+ * License. See LICENSE.TXT for details.
+ *
+ *===----------------------------------------------------------------------===*
+ *
+ * NOTE: This file comes in a style different from the rest of LLVM
+ * source base since  this is a piece of code shared from Intel(R)
+ * products.  Please do not reformat / re-style this code to make
+ * subsequent merges and contributions from the original source base eaiser.
+ *
+ *===----------------------------------------------------------------------===*/
 #ifndef _ITTNOTIFY_TYPES_H_
 #define _ITTNOTIFY_TYPES_H_
 

Modified: llvm/trunk/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c?rev=165589&r1=165588&r2=165589&view=diff
==============================================================================
--- llvm/trunk/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c (original)
+++ llvm/trunk/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c Tue Oct  9 20:48:52 2012
@@ -10,6 +10,11 @@
  * This file provides Intel(R) Performance Analyzer JIT (Just-In-Time) 
  * Profiling API implementation. 
  *
+ * NOTE: This file comes in a style different from the rest of LLVM
+ * source base since  this is a piece of code shared from Intel(R)
+ * products.  Please do not reformat / re-style this code to make
+ * subsequent merges and contributions from the original source base eaiser.
+ *
  *===----------------------------------------------------------------------===*/
 #include "ittnotify_config.h"
 

Modified: llvm/trunk/lib/ExecutionEngine/IntelJITEvents/jitprofiling.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/ExecutionEngine/IntelJITEvents/jitprofiling.h?rev=165589&r1=165588&r2=165589&view=diff
==============================================================================
--- llvm/trunk/lib/ExecutionEngine/IntelJITEvents/jitprofiling.h (original)
+++ llvm/trunk/lib/ExecutionEngine/IntelJITEvents/jitprofiling.h Tue Oct  9 20:48:52 2012
@@ -10,6 +10,11 @@
  * This file provides Intel(R) Performance Analyzer JIT (Just-In-Time) 
  * Profiling API declaration.
  *
+ * NOTE: This file comes in a style different from the rest of LLVM
+ * source base since  this is a piece of code shared from Intel(R)
+ * products.  Please do not reformat / re-style this code to make
+ * subsequent merges and contributions from the original source base eaiser.
+ *
  *===----------------------------------------------------------------------===*/
 #ifndef __JITPROFILING_H__
 #define __JITPROFILING_H__





More information about the llvm-commits mailing list