Mercurial > hg > CbC > CbC_llvm
view test/CodeGen/PowerPC/fold-li.ll @ 0:95c75e76d11b LLVM3.4
LLVM 3.4
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 12 Dec 2013 13:56:28 +0900 |
parents | |
children | 1172e4bd9c6f |
line wrap: on
line source
; RUN: llc < %s -march=ppc32 | \ ; RUN: grep -v align | not grep li ;; Test that immediates are folded into these instructions correctly. define i32 @ADD(i32 %X) nounwind { %Y = add i32 %X, 65537 ; <i32> [#uses=1] ret i32 %Y } define i32 @SUB(i32 %X) nounwind { %Y = sub i32 %X, 65537 ; <i32> [#uses=1] ret i32 %Y }