[llvm-commits] [compiler-rt] r157928 - in /compiler-rt/trunk/lib: sanitizer_common/ tsan/rtl/ tsan/rtl_tests/ tsan/unit_tests/

Alexey Samsonov samsonov at google.com
Mon Jun 4 06:55:20 PDT 2012


Author: samsonov
Date: Mon Jun  4 08:55:19 2012
New Revision: 157928

URL: http://llvm.org/viewvc/llvm-project?rev=157928&view=rev
Log:
Remove file-type tags in .cc files in tsan/ and sanitizer_common/

Modified:
    compiler-rt/trunk/lib/sanitizer_common/sanitizer_libc.cc
    compiler-rt/trunk/lib/sanitizer_common/sanitizer_symbolizer.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_allocator.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_clock.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_flags.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_interceptors.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_interface.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_interface_ann.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_interface_atomic.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_md5.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_mman.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_mutex.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_platform_linux.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_printf.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_report.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_rtl.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_mutex.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_report.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_thread.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_stat.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_suppressions.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_symbolize_addr2line_linux.cc
    compiler-rt/trunk/lib/tsan/rtl/tsan_sync.cc
    compiler-rt/trunk/lib/tsan/rtl_tests/tsan_bench.cc
    compiler-rt/trunk/lib/tsan/rtl_tests/tsan_mop.cc
    compiler-rt/trunk/lib/tsan/rtl_tests/tsan_mutex.cc
    compiler-rt/trunk/lib/tsan/rtl_tests/tsan_posix.cc
    compiler-rt/trunk/lib/tsan/rtl_tests/tsan_string.cc
    compiler-rt/trunk/lib/tsan/rtl_tests/tsan_test.cc
    compiler-rt/trunk/lib/tsan/rtl_tests/tsan_test_util_linux.cc
    compiler-rt/trunk/lib/tsan/rtl_tests/tsan_thread.cc
    compiler-rt/trunk/lib/tsan/unit_tests/tsan_allocator_test.cc
    compiler-rt/trunk/lib/tsan/unit_tests/tsan_clock_test.cc
    compiler-rt/trunk/lib/tsan/unit_tests/tsan_flags_test.cc
    compiler-rt/trunk/lib/tsan/unit_tests/tsan_mman_test.cc
    compiler-rt/trunk/lib/tsan/unit_tests/tsan_mutex_test.cc
    compiler-rt/trunk/lib/tsan/unit_tests/tsan_platform_test.cc
    compiler-rt/trunk/lib/tsan/unit_tests/tsan_printf_test.cc
    compiler-rt/trunk/lib/tsan/unit_tests/tsan_shadow_test.cc
    compiler-rt/trunk/lib/tsan/unit_tests/tsan_suppressions_test.cc
    compiler-rt/trunk/lib/tsan/unit_tests/tsan_sync_test.cc
    compiler-rt/trunk/lib/tsan/unit_tests/tsan_vector_test.cc

Modified: compiler-rt/trunk/lib/sanitizer_common/sanitizer_libc.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_libc.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_libc.cc (original)
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_libc.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- sanitizer_libc.cc ---------------------------------------*- C++ -*-===//
+//===-- sanitizer_libc.cc -------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/sanitizer_common/sanitizer_symbolizer.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_symbolizer.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_symbolizer.cc (original)
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_symbolizer.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- sanitizer_symbolizer.cc ---------------------------------*- C++ -*-===//
+//===-- sanitizer_symbolizer.cc -------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_allocator.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_allocator.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_allocator.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_allocator.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_allocator-------------------------------------------*- C++ -*-===//
+//===-- tsan_allocator-----------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_clock.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_clock.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_clock.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_clock.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_clock.cc -------------------------------------------*- C++ -*-===//
+//===-- tsan_clock.cc -----------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_flags.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_flags.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_flags.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_flags.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_flags.cc -------------------------------------------*- C++ -*-===//
+//===-- tsan_flags.cc -----------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_interceptors.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_interceptors.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_interceptors.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_interceptors.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_interceptors_linux.cc ------------------------------*- C++ -*-===//
+//===-- tsan_interceptors_linux.cc ----------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_interface.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_interface.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_interface.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_interface.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_interface.cc ---------------------------------------*- C++ -*-===//
+//===-- tsan_interface.cc -------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_interface_ann.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_interface_ann.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_interface_ann.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_interface_ann.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_interface_ann.cc -----------------------------------*- C++ -*-===//
+//===-- tsan_interface_ann.cc ---------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_interface_atomic.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_interface_atomic.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_interface_atomic.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_interface_atomic.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_interface_atomic.cc --------------------------------*- C++ -*-===//
+//===-- tsan_interface_atomic.cc ------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_md5.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_md5.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_md5.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_md5.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_md5.cc ---------------------------------------------*- C++ -*-===//
+//===-- tsan_md5.cc -------------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_mman.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_mman.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_mman.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_mman.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_mman.cc --------------------------------------------*- C++ -*-===//
+//===-- tsan_mman.cc ------------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_mutex.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_mutex.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_mutex.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_mutex.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_mutex.cc -------------------------------------------*- C++ -*-===//
+//===-- tsan_mutex.cc -----------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_platform_linux.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_platform_linux.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_platform_linux.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_platform_linux.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_platform_linux.cc ----------------------------------*- C++ -*-===//
+//===-- tsan_platform_linux.cc --------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_printf.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_printf.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_printf.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_printf.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_printf.cc ------------------------------------------*- C++ -*-===//
+//===-- tsan_printf.cc ----------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_report.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_report.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_report.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_report.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_report.cc ------------------------------------------*- C++ -*-===//
+//===-- tsan_report.cc ----------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_rtl.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_rtl.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_rtl.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_rtl.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_rtl.cc ---------------------------------------------*- C++ -*-===//
+//===-- tsan_rtl.cc -------------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_mutex.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_mutex.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_mutex.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_mutex.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_rtl_mutex.cc ---------------------------------------*- C++ -*-===//
+//===-- tsan_rtl_mutex.cc -------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_report.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_report.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_report.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_report.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_rtl.cc ---------------------------------------------*- C++ -*-===//
+//===-- tsan_rtl.cc -------------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_thread.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_thread.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_thread.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_rtl_thread.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_rtl_thread.cc --------------------------------------*- C++ -*-===//
+//===-- tsan_rtl_thread.cc ------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_stat.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_stat.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_stat.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_stat.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_stat.cc --------------------------------------------*- C++ -*-===//
+//===-- tsan_stat.cc ------------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_suppressions.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_suppressions.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_suppressions.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_suppressions.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_suppressions.cc ------------------------------------*- C++ -*-===//
+//===-- tsan_suppressions.cc ----------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_symbolize_addr2line_linux.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_symbolize_addr2line_linux.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_symbolize_addr2line_linux.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_symbolize_addr2line_linux.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_symbolize_addr2line.cc -----------------------------*- C++ -*-===//
+//===-- tsan_symbolize_addr2line.cc ---------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_sync.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_sync.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_sync.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_sync.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_sync.cc --------------------------------------------*- C++ -*-===//
+//===-- tsan_sync.cc ------------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl_tests/tsan_bench.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl_tests/tsan_bench.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl_tests/tsan_bench.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl_tests/tsan_bench.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_bench.cc -------------------------------------------*- C++ -*-===//
+//===-- tsan_bench.cc -----------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl_tests/tsan_mop.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl_tests/tsan_mop.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl_tests/tsan_mop.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl_tests/tsan_mop.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_mop.cc ---------------------------------------------*- C++ -*-===//
+//===-- tsan_mop.cc -------------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl_tests/tsan_mutex.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl_tests/tsan_mutex.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl_tests/tsan_mutex.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl_tests/tsan_mutex.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_mutex.cc -------------------------------------------*- C++ -*-===//
+//===-- tsan_mutex.cc -----------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl_tests/tsan_posix.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl_tests/tsan_posix.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl_tests/tsan_posix.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl_tests/tsan_posix.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_posix.cc -------------------------------------------*- C++ -*-===//
+//===-- tsan_posix.cc -----------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl_tests/tsan_string.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl_tests/tsan_string.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl_tests/tsan_string.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl_tests/tsan_string.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_string.cc ------------------------------------------*- C++ -*-===//
+//===-- tsan_string.cc ----------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl_tests/tsan_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl_tests/tsan_test.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl_tests/tsan_test.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl_tests/tsan_test.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_test.cc --------------------------------------------*- C++ -*-===//
+//===-- tsan_test.cc ------------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl_tests/tsan_test_util_linux.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl_tests/tsan_test_util_linux.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl_tests/tsan_test_util_linux.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl_tests/tsan_test_util_linux.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_test_util_linux.cc ---------------------------------*- C++ -*-===//
+//===-- tsan_test_util_linux.cc -------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/rtl_tests/tsan_thread.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl_tests/tsan_thread.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl_tests/tsan_thread.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl_tests/tsan_thread.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_thread.cc ------------------------------------------*- C++ -*-===//
+//===-- tsan_thread.cc ----------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/unit_tests/tsan_allocator_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/unit_tests/tsan_allocator_test.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/unit_tests/tsan_allocator_test.cc (original)
+++ compiler-rt/trunk/lib/tsan/unit_tests/tsan_allocator_test.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_allocator_test.c------------------------------------*- C++ -*-===//
+//===-- tsan_allocator_test.c----------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/unit_tests/tsan_clock_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/unit_tests/tsan_clock_test.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/unit_tests/tsan_clock_test.cc (original)
+++ compiler-rt/trunk/lib/tsan/unit_tests/tsan_clock_test.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_clock_test.cc --------------------------------------*- C++ -*-===//
+//===-- tsan_clock_test.cc ------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/unit_tests/tsan_flags_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/unit_tests/tsan_flags_test.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/unit_tests/tsan_flags_test.cc (original)
+++ compiler-rt/trunk/lib/tsan/unit_tests/tsan_flags_test.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_flags_test.cc --------------------------------------*- C++ -*-===//
+//===-- tsan_flags_test.cc ------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/unit_tests/tsan_mman_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/unit_tests/tsan_mman_test.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/unit_tests/tsan_mman_test.cc (original)
+++ compiler-rt/trunk/lib/tsan/unit_tests/tsan_mman_test.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_mman_test.cc ---------------------------------------*- C++ -*-===//
+//===-- tsan_mman_test.cc -------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/unit_tests/tsan_mutex_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/unit_tests/tsan_mutex_test.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/unit_tests/tsan_mutex_test.cc (original)
+++ compiler-rt/trunk/lib/tsan/unit_tests/tsan_mutex_test.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_mutex_test.cc --------------------------------------*- C++ -*-===//
+//===-- tsan_mutex_test.cc ------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/unit_tests/tsan_platform_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/unit_tests/tsan_platform_test.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/unit_tests/tsan_platform_test.cc (original)
+++ compiler-rt/trunk/lib/tsan/unit_tests/tsan_platform_test.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_platform_test.cc -----------------------------------*- C++ -*-===//
+//===-- tsan_platform_test.cc ---------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/unit_tests/tsan_printf_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/unit_tests/tsan_printf_test.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/unit_tests/tsan_printf_test.cc (original)
+++ compiler-rt/trunk/lib/tsan/unit_tests/tsan_printf_test.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_printf_test.cc -------------------------------------*- C++ -*-===//
+//===-- tsan_printf_test.cc -----------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/unit_tests/tsan_shadow_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/unit_tests/tsan_shadow_test.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/unit_tests/tsan_shadow_test.cc (original)
+++ compiler-rt/trunk/lib/tsan/unit_tests/tsan_shadow_test.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_shadow_test.cc -------------------------------------*- C++ -*-===//
+//===-- tsan_shadow_test.cc -----------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/unit_tests/tsan_suppressions_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/unit_tests/tsan_suppressions_test.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/unit_tests/tsan_suppressions_test.cc (original)
+++ compiler-rt/trunk/lib/tsan/unit_tests/tsan_suppressions_test.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_suppressions_test.cc -------------------------------*- C++ -*-===//
+//===-- tsan_suppressions_test.cc -----------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/unit_tests/tsan_sync_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/unit_tests/tsan_sync_test.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/unit_tests/tsan_sync_test.cc (original)
+++ compiler-rt/trunk/lib/tsan/unit_tests/tsan_sync_test.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_sync_test.cc ---------------------------------------*- C++ -*-===//
+//===-- tsan_sync_test.cc -------------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //

Modified: compiler-rt/trunk/lib/tsan/unit_tests/tsan_vector_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/unit_tests/tsan_vector_test.cc?rev=157928&r1=157927&r2=157928&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/unit_tests/tsan_vector_test.cc (original)
+++ compiler-rt/trunk/lib/tsan/unit_tests/tsan_vector_test.cc Mon Jun  4 08:55:19 2012
@@ -1,4 +1,4 @@
-//===-- tsan_vector_test.cc -------------------------------------*- C++ -*-===//
+//===-- tsan_vector_test.cc -----------------------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //





More information about the llvm-commits mailing list