diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2006-09-24 19:46:56 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2006-09-24 19:46:56 +0000 |
commit | 5e2bacd6be117b8bb859840eec1908e815f8db3c (patch) | |
tree | 48fd7d4636a6c97a09d778df84ee8c2dd132785e /llvm/lib/Target/Alpha/AlphaTargetMachine.cpp | |
parent | 783a4a9d86565b5993efbb86c401097579d04369 (diff) | |
download | bcm5719-llvm-5e2bacd6be117b8bb859840eec1908e815f8db3c.tar.gz bcm5719-llvm-5e2bacd6be117b8bb859840eec1908e815f8db3c.zip |
Fix jump tables to match gcc (and the ABI and whatnot)
llvm-svn: 30594
Diffstat (limited to 'llvm/lib/Target/Alpha/AlphaTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/Alpha/AlphaTargetMachine.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp b/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp index 6204998b240..a1aab94d9a9 100644 --- a/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp +++ b/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp @@ -59,6 +59,7 @@ AlphaTargetMachine::AlphaTargetMachine(const Module &M, const std::string &FS) FrameInfo(TargetFrameInfo::StackGrowsDown, 16, 0), JITInfo(*this), Subtarget(M, FS) { + setRelocationModel(Reloc::PIC_); } |