rust/src/rustllvm
Alex Crichton 847c8520b1 rustc_llvm: Don't export constants across dlls
For imports of constants across DLLs to work on Windows it *requires* that the
import be marked with `dllimport` (unlike functions where the marker is
optional, but strongly recommended). This currently isn't working for importing
FFI constants across boundaries, however, so the one constant exported from
`rustc_llvm.dll` is now a function to be called instead.
2015-05-19 10:53:07 -07:00
..
ExecutionEngineWrapper.cpp LLVM < 3.5 is unsupported since bb18a3c 2015-04-21 07:20:48 -07:00
llvm-auto-clean-trigger updating llvm-auto-clean-trigger too 2015-03-05 12:38:35 +05:30
PassWrapper.cpp LLVM < 3.5 is unsupported since bb18a3c 2015-04-21 07:20:48 -07:00
README
rustllvm.h LLVM < 3.5 is unsupported since bb18a3c 2015-04-21 07:20:48 -07:00
RustWrapper.cpp rustc_llvm: Don't export constants across dlls 2015-05-19 10:53:07 -07:00

This directory currently contains some LLVM support code. This will generally
be sent upstream to LLVM in time; for now it lives here.