summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/AsmPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-05-06 09:30:03 +0000
committerChris Lattner <sabre@nondot.org>2006-05-06 09:30:03 +0000
commit1ecb2a2dac64618f7f9ea026805ce857fd517724 (patch)
treec8ded36bbcb570fbcb0a8225c4a47b87c23dc628 /llvm/lib/CodeGen/AsmPrinter.cpp
parent7206d74f0c032f10384d8b20b477dfa46859100c (diff)
downloadbcm5719-llvm-1ecb2a2dac64618f7f9ea026805ce857fd517724.tar.gz
bcm5719-llvm-1ecb2a2dac64618f7f9ea026805ce857fd517724.zip
Use the new TargetLowering::ComputeNumSignBits method to eliminate
sign_extend_inreg operations. Though ComputeNumSignBits is still rudimentary, this is enough to compile this: short test(short X, short x) { int Y = X+x; return (Y >> 1); } short test2(short X, short x) { int Y = (short)(X+x); return Y >> 1; } into: _test: add r2, r3, r4 srawi r3, r2, 1 blr _test2: add r2, r3, r4 extsh r2, r2 srawi r3, r2, 1 blr instead of: _test: add r2, r3, r4 srawi r2, r2, 1 extsh r3, r2 blr _test2: add r2, r3, r4 extsh r2, r2 srawi r2, r2, 1 extsh r3, r2 blr llvm-svn: 28146
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter.cpp')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud