1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00
llvm-mirror/lib/AsmParser
Reid Spencer 591bfa1e0b Changes to support making the shift instructions be true BinaryOperators.
This feature is needed in order to support shifts of more than 255 bits
on large integer types.  This changes the syntax for llvm assembly to
make shl, ashr and lshr instructions look like a binary operator:
   shl i32 %X, 1
instead of
   shl i32 %X, i8 1
Additionally, this should help a few passes perform additional optimizations.

llvm-svn: 33776
2007-02-02 02:16:23 +00:00
..
.cvsignore Add new generated files. 2006-03-23 23:48:12 +00:00
Lexer.cpp.cvs Changes to support making the shift instructions be true BinaryOperators. 2007-02-02 02:16:23 +00:00
Lexer.l Changes to support making the shift instructions be true BinaryOperators. 2007-02-02 02:16:23 +00:00
Lexer.l.cvs Changes to support making the shift instructions be true BinaryOperators. 2007-02-02 02:16:23 +00:00
llvmAsmParser.cpp.cvs Changes to support making the shift instructions be true BinaryOperators. 2007-02-02 02:16:23 +00:00
llvmAsmParser.h.cvs Changes to support making the shift instructions be true BinaryOperators. 2007-02-02 02:16:23 +00:00
llvmAsmParser.y Changes to support making the shift instructions be true BinaryOperators. 2007-02-02 02:16:23 +00:00
llvmAsmParser.y.cvs Changes to support making the shift instructions be true BinaryOperators. 2007-02-02 02:16:23 +00:00
Makefile For PR797: 2006-08-18 09:30:03 +00:00
Parser.cpp For PR797: 2006-08-18 08:43:06 +00:00
ParserInternals.h For PR645: 2007-01-26 08:04:51 +00:00