[llvm-commits] [llvm] r75202 - in /llvm/trunk: include/llvm/CodeGen/AsmStream.h lib/CodeGen/AsmStream.cpp

Bill Wendling isanbard at gmail.com
Thu Jul 9 17:05:38 PDT 2009


On Thu, Jul 9, 2009 at 4:56 PM, David Greene<greened at obbligato.org> wrote:
> --- llvm/trunk/include/llvm/CodeGen/AsmStream.h (added)
> +++ llvm/trunk/include/llvm/CodeGen/AsmStream.h Thu Jul  9 18:56:35 2009
> @@ -0,0 +1,179 @@
> +//===-- llvm/CodeGen/AsmStream.h - AsmStream Framework --------*- C++ -*-===//
> +//
> +//                     The LLVM Compiler Infrastructure
> +//
> +// This file was developed by the LLVM research group and is distributed under
> +// the University of Illinois Open Source License. See LICENSE.TXT for details.
> +//
> +//===----------------------------------------------------------------------===//
> +//
> +// This file contains raw_ostream implementations for ASM printers to
> +// do things like pretty-print comments.
> +//
> +//===----------------------------------------------------------------------===//
> +
> +#ifndef LLVM_CODEGEN_ASMSTREAM_H
> +#define LLVM_CODEGEN_ASMSTREAM_H
> +
> +#include "llvm/Target/TargetAsmInfo.h"
> +#include <llvm/Support/raw_ostream.h>

Probably should use "" instead of <> for this #include.

-bw




More information about the llvm-commits mailing list