Add correct file headers to all source files.

llvm-svn: 177625
This commit is contained in:
Greg Clayton 2013-03-21 03:39:51 +00:00
parent 5635f77a99
commit 5dbe5d4b62
15 changed files with 80 additions and 56 deletions

View 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>

View 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>

View 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>

View 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

View 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__

View 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>

View 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__

View 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"

View 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__

View 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"

View 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__

View 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>

View 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__

View 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>

View 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__