diff options
author | Greg Clayton <gclayton@apple.com> | 2013-03-21 03:39:51 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2013-03-21 03:39:51 +0000 |
commit | 5dbe5d4b62328fa7f7f43643d9e69ba00db2dedf (patch) | |
tree | 2948fff6b85867bc853325f554a84fde9d5e8134 /lldb/tools/lldb-perf/lib | |
parent | 5635f77a99ff796af8d4ff595e8ad1bb2ae2bcfb (diff) | |
download | bcm5719-llvm-5dbe5d4b62328fa7f7f43643d9e69ba00db2dedf.tar.gz bcm5719-llvm-5dbe5d4b62328fa7f7f43643d9e69ba00db2dedf.zip |
Add correct file headers to all source files.
llvm-svn: 177625
Diffstat (limited to 'lldb/tools/lldb-perf/lib')
-rw-r--r-- | lldb/tools/lldb-perf/lib/Gauge.h | 9 | ||||
-rw-r--r-- | lldb/tools/lldb-perf/lib/Measurement.h | 9 | ||||
-rw-r--r-- | lldb/tools/lldb-perf/lib/MemoryGauge.cpp | 9 | ||||
-rw-r--r-- | lldb/tools/lldb-perf/lib/MemoryGauge.h | 9 | ||||
-rw-r--r-- | lldb/tools/lldb-perf/lib/Metric.cpp | 9 | ||||
-rw-r--r-- | lldb/tools/lldb-perf/lib/Metric.h | 9 | ||||
-rw-r--r-- | lldb/tools/lldb-perf/lib/TestCase.cpp | 9 | ||||
-rw-r--r-- | lldb/tools/lldb-perf/lib/TestCase.h | 9 | ||||
-rw-r--r-- | lldb/tools/lldb-perf/lib/Timer.cpp | 9 | ||||
-rw-r--r-- | lldb/tools/lldb-perf/lib/Timer.h | 9 | ||||
-rw-r--r-- | lldb/tools/lldb-perf/lib/Xcode.cpp | 9 | ||||
-rw-r--r-- | lldb/tools/lldb-perf/lib/Xcode.h | 9 |
12 files changed, 60 insertions, 48 deletions
diff --git a/lldb/tools/lldb-perf/lib/Gauge.h b/lldb/tools/lldb-perf/lib/Gauge.h index 1a38f070678..60cfcd170a3 100644 --- a/lldb/tools/lldb-perf/lib/Gauge.h +++ b/lldb/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/lldb/tools/lldb-perf/lib/Measurement.h b/lldb/tools/lldb-perf/lib/Measurement.h index 120cd18eb6f..77e69431e8d 100644 --- a/lldb/tools/lldb-perf/lib/Measurement.h +++ b/lldb/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/lldb/tools/lldb-perf/lib/MemoryGauge.cpp b/lldb/tools/lldb-perf/lib/MemoryGauge.cpp index 969910408c2..30b587d06ba 100644 --- a/lldb/tools/lldb-perf/lib/MemoryGauge.cpp +++ b/lldb/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/lldb/tools/lldb-perf/lib/MemoryGauge.h b/lldb/tools/lldb-perf/lib/MemoryGauge.h index 7b357dc718b..1781defc6f0 100644 --- a/lldb/tools/lldb-perf/lib/MemoryGauge.h +++ b/lldb/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/lldb/tools/lldb-perf/lib/Metric.cpp b/lldb/tools/lldb-perf/lib/Metric.cpp index df8a243b1cc..5f17bea9a21 100644 --- a/lldb/tools/lldb-perf/lib/Metric.cpp +++ b/lldb/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/lldb/tools/lldb-perf/lib/Metric.h b/lldb/tools/lldb-perf/lib/Metric.h index a3066c9c235..0e65d82aab4 100644 --- a/lldb/tools/lldb-perf/lib/Metric.h +++ b/lldb/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/lldb/tools/lldb-perf/lib/TestCase.cpp b/lldb/tools/lldb-perf/lib/TestCase.cpp index ba4da6b7217..4f5c00c6204 100644 --- a/lldb/tools/lldb-perf/lib/TestCase.cpp +++ b/lldb/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/lldb/tools/lldb-perf/lib/TestCase.h b/lldb/tools/lldb-perf/lib/TestCase.h index 707806bf157..e20eeb6fc19 100644 --- a/lldb/tools/lldb-perf/lib/TestCase.h +++ b/lldb/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/lldb/tools/lldb-perf/lib/Timer.cpp b/lldb/tools/lldb-perf/lib/Timer.cpp index bd912474aa2..428328b88d1 100644 --- a/lldb/tools/lldb-perf/lib/Timer.cpp +++ b/lldb/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/lldb/tools/lldb-perf/lib/Timer.h b/lldb/tools/lldb-perf/lib/Timer.h index 82bc68f1a10..2f56e562010 100644 --- a/lldb/tools/lldb-perf/lib/Timer.h +++ b/lldb/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/lldb/tools/lldb-perf/lib/Xcode.cpp b/lldb/tools/lldb-perf/lib/Xcode.cpp index 6d42118384f..c095ea407c1 100644 --- a/lldb/tools/lldb-perf/lib/Xcode.cpp +++ b/lldb/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/lldb/tools/lldb-perf/lib/Xcode.h b/lldb/tools/lldb-perf/lib/Xcode.h index 1799fc9703a..77e02536937 100644 --- a/lldb/tools/lldb-perf/lib/Xcode.h +++ b/lldb/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__ |