Add correct file headers to all source files.



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@177625 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/lldb-perf/darwin/formatters/fmts_tester.mm b/tools/lldb-perf/darwin/formatters/fmts_tester.mm
index bfbc54e..57ce008 100644
--- a/tools/lldb-perf/darwin/formatters/fmts_tester.mm
+++ b/tools/lldb-perf/darwin/formatters/fmts_tester.mm
@@ -1,3 +1,13 @@
+//===-- fmts_tester.cpp -----------------------------------------*- C++ -*-===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+
 #import <Cocoa/Cocoa.h>
 #include <vector>
 #include <list>
diff --git a/tools/lldb-perf/darwin/formatters/formatters.cpp b/tools/lldb-perf/darwin/formatters/formatters.cpp
index 846bdb7..1a2f8e4 100644
--- a/tools/lldb-perf/darwin/formatters/formatters.cpp
+++ b/tools/lldb-perf/darwin/formatters/formatters.cpp
@@ -1,10 +1,11 @@
+//===-- formatters.cpp ------------------------------------------*- C++ -*-===//
 //
-//  main.cpp
-//  PerfTestDriver
+//                     The LLVM Compiler Infrastructure
 //
-//  Created by Enrico Granata on 3/6/13.
-//  Copyright (c) 2013 Apple Inc. All rights reserved.
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
 //
+//===----------------------------------------------------------------------===//
 
 #include <CoreFoundation/CoreFoundation.h>
 
diff --git a/tools/lldb-perf/darwin/sketch/sketch.cpp b/tools/lldb-perf/darwin/sketch/sketch.cpp
index f360f09..65b601e 100644
--- a/tools/lldb-perf/darwin/sketch/sketch.cpp
+++ b/tools/lldb-perf/darwin/sketch/sketch.cpp
@@ -1,10 +1,11 @@
+//===-- sketch.cpp ----------------------------------------------*- C++ -*-===//
 //
-//  main.cpp
-//  PerfTestDriver
+//                     The LLVM Compiler Infrastructure
 //
-//  Created by Enrico Granata on 3/6/13.
-//  Copyright (c) 2013 Apple Inc. All rights reserved.
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
 //
+//===----------------------------------------------------------------------===//
 
 #include <CoreFoundation/CoreFoundation.h>
 
diff --git a/tools/lldb-perf/lib/Gauge.h b/tools/lldb-perf/lib/Gauge.h
index 1a38f07..60cfcd1 100644
--- a/tools/lldb-perf/lib/Gauge.h
+++ b/tools/lldb-perf/lib/Gauge.h
@@ -1,10 +1,11 @@
+//===-- Gauge.h -------------------------------------------------*- C++ -*-===//
 //
-//  Gauge.h
-//  PerfTestDriver
+//                     The LLVM Compiler Infrastructure
 //
-//  Created by Enrico Granata on 3/7/13.
-//  Copyright (c) 2013 Apple Inc. All rights reserved.
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
 //
+//===----------------------------------------------------------------------===//
 
 #ifndef PerfTestDriver_Gauge_h
 #define PerfTestDriver_Gauge_h
diff --git a/tools/lldb-perf/lib/Measurement.h b/tools/lldb-perf/lib/Measurement.h
index 120cd18..77e6943 100644
--- a/tools/lldb-perf/lib/Measurement.h
+++ b/tools/lldb-perf/lib/Measurement.h
@@ -1,10 +1,11 @@
+//===-- Measurement.h -------------------------------------------*- C++ -*-===//
 //
-//  Measurement.h
-//  PerfTestDriver
+//                     The LLVM Compiler Infrastructure
 //
-//  Created by Enrico Granata on 3/7/13.
-//  Copyright (c) 2013 Apple Inc. All rights reserved.
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
 //
+//===----------------------------------------------------------------------===//
 
 #ifndef __PerfTestDriver__Measurement__
 #define __PerfTestDriver__Measurement__
diff --git a/tools/lldb-perf/lib/MemoryGauge.cpp b/tools/lldb-perf/lib/MemoryGauge.cpp
index 9699104..30b587d 100644
--- a/tools/lldb-perf/lib/MemoryGauge.cpp
+++ b/tools/lldb-perf/lib/MemoryGauge.cpp
@@ -1,10 +1,11 @@
+//===-- MemoryGauge.cpp -----------------------------------------*- C++ -*-===//
 //
-//  MemoryGauge.cpp
-//  PerfTestDriver
+//                     The LLVM Compiler Infrastructure
 //
-//  Created by Enrico Granata on 3/6/13.
-//  Copyright (c) 2013 Apple Inc. All rights reserved.
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
 //
+//===----------------------------------------------------------------------===//
 
 #include "MemoryGauge.h"
 #include <assert.h>
diff --git a/tools/lldb-perf/lib/MemoryGauge.h b/tools/lldb-perf/lib/MemoryGauge.h
index 7b357dc..1781def 100644
--- a/tools/lldb-perf/lib/MemoryGauge.h
+++ b/tools/lldb-perf/lib/MemoryGauge.h
@@ -1,10 +1,11 @@
+//===-- MemoryGauge.h -------------------------------------------*- C++ -*-===//
 //
-//  MemoryGauge.h
-//  PerfTestDriver
+//                     The LLVM Compiler Infrastructure
 //
-//  Created by Enrico Granata on 3/6/13.
-//  Copyright (c) 2013 Apple Inc. All rights reserved.
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
 //
+//===----------------------------------------------------------------------===//
 
 #ifndef __PerfTestDriver__MemoryGauge__
 #define __PerfTestDriver__MemoryGauge__
diff --git a/tools/lldb-perf/lib/Metric.cpp b/tools/lldb-perf/lib/Metric.cpp
index df8a243..5f17bea 100644
--- a/tools/lldb-perf/lib/Metric.cpp
+++ b/tools/lldb-perf/lib/Metric.cpp
@@ -1,10 +1,11 @@
+//===-- Metric.cpp ----------------------------------------------*- C++ -*-===//
 //
-//  Metric.cpp
-//  PerfTestDriver
+//                     The LLVM Compiler Infrastructure
 //
-//  Created by Enrico Granata on 3/7/13.
-//  Copyright (c) 2013 Apple Inc. All rights reserved.
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
 //
+//===----------------------------------------------------------------------===//
 
 #include "Metric.h"
 
diff --git a/tools/lldb-perf/lib/Metric.h b/tools/lldb-perf/lib/Metric.h
index a3066c9..0e65d82 100644
--- a/tools/lldb-perf/lib/Metric.h
+++ b/tools/lldb-perf/lib/Metric.h
@@ -1,10 +1,11 @@
+//===-- Metric.h ------------------------------------------------*- C++ -*-===//
 //
-//  Metric.h
-//  PerfTestDriver
+//                     The LLVM Compiler Infrastructure
 //
-//  Created by Enrico Granata on 3/7/13.
-//  Copyright (c) 2013 Apple Inc. All rights reserved.
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
 //
+//===----------------------------------------------------------------------===//
 
 #ifndef __PerfTestDriver__Metric__
 #define __PerfTestDriver__Metric__
diff --git a/tools/lldb-perf/lib/TestCase.cpp b/tools/lldb-perf/lib/TestCase.cpp
index ba4da6b..4f5c00c 100644
--- a/tools/lldb-perf/lib/TestCase.cpp
+++ b/tools/lldb-perf/lib/TestCase.cpp
@@ -1,10 +1,11 @@
+//===-- TestCase.cpp --------------------------------------------*- C++ -*-===//
 //
-//  TestCase.cpp
-//  PerfTestDriver
+//                     The LLVM Compiler Infrastructure
 //
-//  Created by Enrico Granata on 3/7/13.
-//  Copyright (c) 2013 Apple Inc. All rights reserved.
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
 //
+//===----------------------------------------------------------------------===//
 
 #include "TestCase.h"
 #include "Xcode.h"
diff --git a/tools/lldb-perf/lib/TestCase.h b/tools/lldb-perf/lib/TestCase.h
index 707806b..e20eeb6 100644
--- a/tools/lldb-perf/lib/TestCase.h
+++ b/tools/lldb-perf/lib/TestCase.h
@@ -1,10 +1,11 @@
+//===-- TestCase.h ----------------------------------------------*- C++ -*-===//
 //
-//  TestCase.h
-//  PerfTestDriver
+//                     The LLVM Compiler Infrastructure
 //
-//  Created by Enrico Granata on 3/7/13.
-//  Copyright (c) 2013 Apple Inc. All rights reserved.
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
 //
+//===----------------------------------------------------------------------===//
 
 #ifndef __PerfTestDriver__TestCase__
 #define __PerfTestDriver__TestCase__
diff --git a/tools/lldb-perf/lib/Timer.cpp b/tools/lldb-perf/lib/Timer.cpp
index bd91247..428328b 100644
--- a/tools/lldb-perf/lib/Timer.cpp
+++ b/tools/lldb-perf/lib/Timer.cpp
@@ -1,10 +1,11 @@
+//===-- Timer.cpp -----------------------------------------------*- C++ -*-===//
 //
-//  Timer.cpp
-//  PerfTestDriver
+//                     The LLVM Compiler Infrastructure
 //
-//  Created by Enrico Granata on 3/6/13.
-//  Copyright (c) 2013 Apple Inc. All rights reserved.
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
 //
+//===----------------------------------------------------------------------===//
 
 #include "Timer.h"
 #include <assert.h>
diff --git a/tools/lldb-perf/lib/Timer.h b/tools/lldb-perf/lib/Timer.h
index 82bc68f..2f56e56 100644
--- a/tools/lldb-perf/lib/Timer.h
+++ b/tools/lldb-perf/lib/Timer.h
@@ -1,10 +1,11 @@
+//===-- Timer.h -------------------------------------------------*- C++ -*-===//
 //
-//  Timer.h
-//  PerfTestDriver
+//                     The LLVM Compiler Infrastructure
 //
-//  Created by Enrico Granata on 3/6/13.
-//  Copyright (c) 2013 Apple Inc. All rights reserved.
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
 //
+//===----------------------------------------------------------------------===//
 
 #ifndef __PerfTestDriver__Timer__
 #define __PerfTestDriver__Timer__
diff --git a/tools/lldb-perf/lib/Xcode.cpp b/tools/lldb-perf/lib/Xcode.cpp
index 6d42118..c095ea4 100644
--- a/tools/lldb-perf/lib/Xcode.cpp
+++ b/tools/lldb-perf/lib/Xcode.cpp
@@ -1,10 +1,11 @@
+//===-- Xcode.cpp -----------------------------------------------*- C++ -*-===//
 //
-//  Xcode.cpp
-//  PerfTestDriver
+//                     The LLVM Compiler Infrastructure
 //
-//  Created by Enrico Granata on 3/6/13.
-//  Copyright (c) 2013 Apple Inc. All rights reserved.
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
 //
+//===----------------------------------------------------------------------===//
 
 #include "Xcode.h"
 #include <string>
diff --git a/tools/lldb-perf/lib/Xcode.h b/tools/lldb-perf/lib/Xcode.h
index 1799fc9..77e0253 100644
--- a/tools/lldb-perf/lib/Xcode.h
+++ b/tools/lldb-perf/lib/Xcode.h
@@ -1,10 +1,11 @@
+//===-- Xcode.h -------------------------------------------------*- C++ -*-===//
 //
-//  Xcode.h
-//  PerfTestDriver
+//                     The LLVM Compiler Infrastructure
 //
-//  Created by Enrico Granata on 3/6/13.
-//  Copyright (c) 2013 Apple Inc. All rights reserved.
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
 //
+//===----------------------------------------------------------------------===//
 
 #ifndef __PerfTestDriver__Xcode__
 #define __PerfTestDriver__Xcode__