diff options
author | Chris Lattner <sabre@nondot.org> | 2009-03-06 16:54:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-03-06 16:54:19 +0000 |
commit | a59518276e4a1a87de974551696160ba4c980cce (patch) | |
tree | 3daab321f926afe98f2687d2102d440c57cf346f /llvm/include/llvm-c/Transforms | |
parent | e48f897ca79f89e5a13df4f04051c0aea4becdbf (diff) | |
download | bcm5719-llvm-a59518276e4a1a87de974551696160ba4c980cce.tar.gz bcm5719-llvm-a59518276e4a1a87de974551696160ba4c980cce.zip |
fix header comment and include guard.
llvm-svn: 66273
Diffstat (limited to 'llvm/include/llvm-c/Transforms')
-rw-r--r-- | llvm/include/llvm-c/Transforms/IPO.h | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/llvm/include/llvm-c/Transforms/IPO.h b/llvm/include/llvm-c/Transforms/IPO.h index 731597c4fe4..9bc947f4d8a 100644 --- a/llvm/include/llvm-c/Transforms/IPO.h +++ b/llvm/include/llvm-c/Transforms/IPO.h @@ -1,4 +1,4 @@ -/*===-- Scalar.h - Scalar Transformation Library C Interface ----*- C++ -*-===*\ +/*===-- IPO.h - Interprocedural Transformations C Interface -----*- C++ -*-===*\ |* *| |* The LLVM Compiler Infrastructure *| |* *| @@ -7,17 +7,13 @@ |* *| |*===----------------------------------------------------------------------===*| |* *| -|* This header declares the C interface to libLLVMScalarOpts.a, which *| -|* implements various scalar transformations of the LLVM IR. *| -|* *| -|* Many exotic languages can interoperate with C code but have a harder time *| -|* with C++ due to name mangling. So in addition to C, this interface enables *| -|* tools written in such languages. *| +|* This header declares the C interface to libLLVMIPO.a, which implements *| +|* various interprocedural transformations of the LLVM IR. *| |* *| \*===----------------------------------------------------------------------===*/ -#ifndef LLVM_C_TRANSFORMS_SCALAR_H -#define LLVM_C_TRANSFORMS_SCALAR_H +#ifndef LLVM_C_TRANSFORMS_IPO_H +#define LLVM_C_TRANSFORMS_IPO_H #include "llvm-c/Core.h" |