diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2016-06-17 17:04:56 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2016-06-17 17:04:56 +0000 |
commit | e021e85166bf0349d4b3f9334705f72a49285b3d (patch) | |
tree | ac8d5f7f5631306890f28c8afe565346486955bb /llvm/test/ExecutionEngine | |
parent | 6fcbbcb3280fdb3262a9ec47958ffabf9e665ad2 (diff) | |
download | bcm5719-llvm-e021e85166bf0349d4b3f9334705f72a49285b3d.tar.gz bcm5719-llvm-e021e85166bf0349d4b3f9334705f72a49285b3d.zip |
Change the default of -relax-relocations.
llvm-mc is a developer tool, as such it make sense for it to use new
features by default.
This doesn't change the user facing clang, which still defaults to non
relaxable relocations.
llvm-svn: 273014
Diffstat (limited to 'llvm/test/ExecutionEngine')
-rw-r--r-- | llvm/test/ExecutionEngine/RuntimeDyld/X86/ELF-relaxed.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/ExecutionEngine/RuntimeDyld/X86/ELF-relaxed.s b/llvm/test/ExecutionEngine/RuntimeDyld/X86/ELF-relaxed.s index c0658307980..4eae72b18ca 100644 --- a/llvm/test/ExecutionEngine/RuntimeDyld/X86/ELF-relaxed.s +++ b/llvm/test/ExecutionEngine/RuntimeDyld/X86/ELF-relaxed.s @@ -1,5 +1,5 @@ # RUN: llvm-mc -triple=x86_64-pc-linux -filetype=obj -o %T/file.o %p/Inputs/ELF_STT_FILE_GLOBAL.s -# RUN: llvm-mc -triple=x86_64-pc-linux -relax-relocations -filetype=obj -o %T/relaxed.o %s +# RUN: llvm-mc -triple=x86_64-pc-linux -filetype=obj -o %T/relaxed.o %s # RUN: llvm-rtdyld -triple=x86_64-pc-linux -verify %T/file.o %T/relaxed.o # Test that RTDyldELF does not crash with 'unimplemented relocation' |