1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

Give these files top-level comments that describe the current code.

llvm-svn: 81473
This commit is contained in:
Dan Gohman 2009-09-10 23:07:18 +00:00
parent e55527b3f2
commit 97819c7fe8
2 changed files with 14 additions and 6 deletions

View File

@ -1,4 +1,4 @@
//===-- ConstantFolding.h - Analyze constant folding possibilities --------===//
//===-- ConstantFolding.h - Fold instructions into constants --------------===//
//
// The LLVM Compiler Infrastructure
//
@ -7,8 +7,12 @@
//
//===----------------------------------------------------------------------===//
//
// This family of functions determines the possibility of performing constant
// folding.
// This file declares routines for folding instructions into constants.
//
// Also, to supplement the basic VMCore ConstantExpr simplifications,
// this file declares some additional folding routines that can make use of
// TargetData information. These functions cannot go in VMCore due to library
// dependency issues.
//
//===----------------------------------------------------------------------===//

View File

@ -1,4 +1,4 @@
//===-- ConstantFolding.cpp - Analyze constant folding possibilities ------===//
//===-- ConstantFolding.cpp - Fold instructions into constants ------------===//
//
// The LLVM Compiler Infrastructure
//
@ -7,8 +7,12 @@
//
//===----------------------------------------------------------------------===//
//
// This family of functions determines the possibility of performing constant
// folding.
// This file defines routines for folding instructions into constants.
//
// Also, to supplement the basic VMCore ConstantExpr simplifications,
// this file defines some additional folding routines that can make use of
// TargetData information. These functions cannot go in VMCore due to library
// dependency issues.
//
//===----------------------------------------------------------------------===//