diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-09-15 17:46:24 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-09-15 17:46:24 +0000 |
| commit | 840c70065482b3e1a875938e987003efc8cea154 (patch) | |
| tree | b2b3d7af7c94ce924bf50fe5a24fb2847ebfbe5d /llvm/test | |
| parent | 188f62f1ccc702c65793bebcfedc3f9c6a0ca29f (diff) | |
| download | bcm5719-llvm-840c70065482b3e1a875938e987003efc8cea154.tar.gz bcm5719-llvm-840c70065482b3e1a875938e987003efc8cea154.zip | |
several major improvements to the sparc backend: support for weak linkage
and PIC codegen. Patch by Venkatraman Govindaraju!
llvm-svn: 81877
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/CodeGen/SPARC/2009-08-28-PIC.ll | 9 | ||||
| -rw-r--r-- | llvm/test/CodeGen/SPARC/2009-08-28-WeakLinkage.ll | 6 |
2 files changed, 15 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/SPARC/2009-08-28-PIC.ll b/llvm/test/CodeGen/SPARC/2009-08-28-PIC.ll new file mode 100644 index 00000000000..b763daf480f --- /dev/null +++ b/llvm/test/CodeGen/SPARC/2009-08-28-PIC.ll @@ -0,0 +1,9 @@ +; RUN: llvm-as < %s | llc -march=sparc --relocation-model=pic | grep _GLOBAL_OFFSET_TABLE_ + +@foo = global i32 0 ; <i32*> [#uses=1] + +define i32 @func() nounwind readonly { +entry: + %0 = load i32* @foo, align 4 ; <i32> [#uses=1] + ret i32 %0 +} diff --git a/llvm/test/CodeGen/SPARC/2009-08-28-WeakLinkage.ll b/llvm/test/CodeGen/SPARC/2009-08-28-WeakLinkage.ll new file mode 100644 index 00000000000..7fe81cc9b54 --- /dev/null +++ b/llvm/test/CodeGen/SPARC/2009-08-28-WeakLinkage.ll @@ -0,0 +1,6 @@ +; RUN: llvm-as < %s | llc -march=sparc | grep weak + +define weak i32 @func() nounwind { +entry: + ret i32 0 +} |

