diff options
author | Davide Italiano <davide@freebsd.org> | 2016-11-02 21:05:42 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2016-11-02 21:05:42 +0000 |
commit | fade6c26a099c1626eb2407612a0dfbc9f026761 (patch) | |
tree | 3b6a250de947ff974f6e186f7d5cc33120ffe41f /test/ExecutionEngine/MCJIT | |
parent | a7bfb15b266f14ccb12044db11638a653dd3bdde (diff) | |
download | llvm-fade6c26a099c1626eb2407612a0dfbc9f026761.tar.gz |
[RuntimeDyld] Move an X86 only test to the correct directory.
This is an attempt to placate the bots after r285841.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@285859 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine/MCJIT')
-rw-r--r-- | test/ExecutionEngine/MCJIT/coff-alignment.ll | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/ExecutionEngine/MCJIT/coff-alignment.ll b/test/ExecutionEngine/MCJIT/coff-alignment.ll deleted file mode 100644 index ed45d73584cc..000000000000 --- a/test/ExecutionEngine/MCJIT/coff-alignment.ll +++ /dev/null @@ -1,8 +0,0 @@ -; RUN: opt -mtriple=x86_64-pc-win32-coff %s -o - | lli - -@o = common global i32 0, align 4 - -define i32 @main() { - %patatino = load i32, i32* @o, align 4 - ret i32 %patatino -} |