mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
use a 'register pressure reducing' scheduler
make sure only one move is used in a hello world llvm-svn: 29520
This commit is contained in:
parent
97918b1d11
commit
bd29d36be4
@ -44,6 +44,8 @@ ARMTargetLowering::ARMTargetLowering(TargetMachine &TM)
|
||||
setOperationAction(ISD::RET, MVT::Other, Custom);
|
||||
setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
|
||||
setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
|
||||
|
||||
setSchedulingPreference(SchedulingForRegPressure);
|
||||
}
|
||||
|
||||
namespace llvm {
|
||||
|
13
test/Regression/CodeGen/ARM/hello.ll
Normal file
13
test/Regression/CodeGen/ARM/hello.ll
Normal file
@ -0,0 +1,13 @@
|
||||
; RUN: llvm-as < %s | llc -march=arm &&
|
||||
; RUN: llvm-as < %s | llc -march=arm | grep mov | wc -l | grep 1
|
||||
%str = internal constant [12 x sbyte] c"Hello World\00" ; <[12 x sbyte]*> [#uses=1]
|
||||
|
||||
implementation ; Functions:
|
||||
|
||||
int %main() {
|
||||
entry:
|
||||
%tmp = call int %puts( sbyte* getelementptr ([12 x sbyte]* %str, int 0, uint 0) ) ; <int> [#uses=0]
|
||||
ret int 0
|
||||
}
|
||||
|
||||
declare int %puts(sbyte*)
|
Loading…
Reference in New Issue
Block a user