[cfe-commits] r66986 - in /cfe/trunk: include/clang/Driver/Types.h lib/Driver/Types.cpp
Sebastian Redl
sebastian.redl at getdesigned.at
Sat Mar 14 00:47:55 PDT 2009
Daniel Dunbar wrote:
> Author: ddunbar
> Date: Fri Mar 13 18:46:19 2009
> New Revision: 66986
>
> URL: http://llvm.org/viewvc/llvm-project?rev=66986&view=rev
> Log:
> Driver: Add types::{isAcceptedByClang,isCXX} predicates.
>
>
> +bool types::isAcceptedByClang(ID Id) {
> + switch (Id) {
> + default:
> + return false;
> +
> + case TY_Asm:
>
Clang accepts ASM files? What exactly does it do with them?
Sebastian
More information about the cfe-commits
mailing list