Make .asm a valid extension for assembly files

This is a common extension on Windows, and now clang will assemble them
instead of treating them as linker input which is the default for unknown
file types.

llvm-svn: 192919
This commit is contained in:
Hans Wennborg 2013-10-17 20:41:18 +00:00
parent 4c24b1264a
commit cd2672c9b4
1 changed files with 1 additions and 0 deletions

View File

@ -139,6 +139,7 @@ types::ID types::lookupTypeForExtension(const char *Ext) {
.Case("f", TY_PP_Fortran)
.Case("F", TY_Fortran)
.Case("s", TY_PP_Asm)
.Case("asm", TY_PP_Asm)
.Case("S", TY_Asm)
.Case("o", TY_Object)
.Case("obj", TY_Object)