aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm-c/Transforms
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-03-06 16:54:19 +0000
committerChris Lattner <sabre@nondot.org>2009-03-06 16:54:19 +0000
commit224cef60f4d752594f6468156de0da0cd628d6ef (patch)
tree312cdf6626c534a345e6a3a8e55d6c945fa98dfb /include/llvm-c/Transforms
parent57c03831ccaabd619d1d7eb164375e7e3027031d (diff)
downloadexternal_llvm-224cef60f4d752594f6468156de0da0cd628d6ef.zip
external_llvm-224cef60f4d752594f6468156de0da0cd628d6ef.tar.gz
external_llvm-224cef60f4d752594f6468156de0da0cd628d6ef.tar.bz2
fix header comment and include guard.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66273 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm-c/Transforms')
-rw-r--r--include/llvm-c/Transforms/IPO.h14
1 files changed, 5 insertions, 9 deletions
diff --git a/include/llvm-c/Transforms/IPO.h b/include/llvm-c/Transforms/IPO.h
index 731597c..9bc947f 100644
--- a/include/llvm-c/Transforms/IPO.h
+++ b/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"