Add correct file headers to all source files.
authorGreg Clayton <gclayton@apple.com>
Thu, 21 Mar 2013 03:39:51 +0000 (03:39 +0000)
committerGreg Clayton <gclayton@apple.com>
Thu, 21 Mar 2013 03:39:51 +0000 (03:39 +0000)
llvm-svn: 177625

15 files changed:
lldb/tools/lldb-perf/darwin/formatters/fmts_tester.mm
lldb/tools/lldb-perf/darwin/formatters/formatters.cpp
lldb/tools/lldb-perf/darwin/sketch/sketch.cpp
lldb/tools/lldb-perf/lib/Gauge.h
lldb/tools/lldb-perf/lib/Measurement.h
lldb/tools/lldb-perf/lib/MemoryGauge.cpp
lldb/tools/lldb-perf/lib/MemoryGauge.h
lldb/tools/lldb-perf/lib/Metric.cpp
lldb/tools/lldb-perf/lib/Metric.h
lldb/tools/lldb-perf/lib/TestCase.cpp
lldb/tools/lldb-perf/lib/TestCase.h
lldb/tools/lldb-perf/lib/Timer.cpp
lldb/tools/lldb-perf/lib/Timer.h
lldb/tools/lldb-perf/lib/Xcode.cpp
lldb/tools/lldb-perf/lib/Xcode.h

index bfbc54e..57ce008 100644 (file)
@@ -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>
index 846bdb7..1a2f8e4 100644 (file)
@@ -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>
 
index f360f09..65b601e 100644 (file)
@@ -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>
 
index 1a38f07..60cfcd1 100644 (file)
@@ -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
index 120cd18..77e6943 100644 (file)
@@ -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__
index 9699104..30b587d 100644 (file)
@@ -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>
index 7b357dc..1781def 100644 (file)
@@ -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__
index df8a243..5f17bea 100644 (file)
@@ -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"
 
index a3066c9..0e65d82 100644 (file)
@@ -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__
index ba4da6b..4f5c00c 100644 (file)
@@ -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"
index 707806b..e20eeb6 100644 (file)
@@ -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__
index bd91247..428328b 100644 (file)
@@ -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>
index 82bc68f..2f56e56 100644 (file)
@@ -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__
index 6d42118..c095ea4 100644 (file)
@@ -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>
index 1799fc9..77e0253 100644 (file)
@@ -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__