[llvm-commits] [llvm] r66273 - /llvm/trunk/include/llvm-c/Transforms/IPO.h
Chris Lattner
sabre at nondot.org
Fri Mar 6 08:54:19 PST 2009
Author: lattner
Date: Fri Mar 6 10:54:19 2009
New Revision: 66273
URL: http://llvm.org/viewvc/llvm-project?rev=66273&view=rev
Log:
fix header comment and include guard.
Modified:
llvm/trunk/include/llvm-c/Transforms/IPO.h
Modified: llvm/trunk/include/llvm-c/Transforms/IPO.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm-c/Transforms/IPO.h?rev=66273&r1=66272&r2=66273&view=diff
==============================================================================
--- llvm/trunk/include/llvm-c/Transforms/IPO.h (original)
+++ llvm/trunk/include/llvm-c/Transforms/IPO.h Fri Mar 6 10:54:19 2009
@@ -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"
More information about the llvm-commits
mailing list