diff options
author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2009-11-25 12:17:58 +0000 |
---|---|---|
committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2009-11-25 12:17:58 +0000 |
commit | 2db07581b7f7f61c5c8647367e60cf69a5c545ce (patch) | |
tree | b7902e50930e68008026886566b99f4280140b88 /llvm/test/CodeGen | |
parent | 87e82ced6069568a0a3169cdd5376a000021acea (diff) | |
download | bcm5719-llvm-2db07581b7f7f61c5c8647367e60cf69a5c545ce.tar.gz bcm5719-llvm-2db07581b7f7f61c5c8647367e60cf69a5c545ce.zip |
Support PIC loading of constant pool entries
llvm-svn: 89863
Diffstat (limited to 'llvm/test/CodeGen')
-rw-r--r-- | llvm/test/CodeGen/Mips/2009-11-16-CstPoolLoad.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/Mips/2009-11-16-CstPoolLoad.ll b/llvm/test/CodeGen/Mips/2009-11-16-CstPoolLoad.ll index f59639f66ad..636b318014a 100644 --- a/llvm/test/CodeGen/Mips/2009-11-16-CstPoolLoad.ll +++ b/llvm/test/CodeGen/Mips/2009-11-16-CstPoolLoad.ll @@ -4,7 +4,7 @@ target triple = "mips-unknown-linux" define float @h() nounwind readnone { entry: -; CHECK: lui $2, %hi($CPI1_0) +; CHECK: lw $2, %got($CPI1_0)($gp) ; CHECK: lwc1 $f0, %lo($CPI1_0)($2) ret float 0x400B333340000000 } |