feat(third_party/bazel): Check in rules_haskell from Tweag
This commit is contained in:
parent
2eb1dc26e4
commit
f723b8b878
479 changed files with 51484 additions and 0 deletions
20
third_party/bazel/rules_haskell/examples/vector/include/vector.h
vendored
Normal file
20
third_party/bazel/rules_haskell/examples/vector/include/vector.h
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#define PHASE_FUSED [1]
|
||||
#define PHASE_INNER [0]
|
||||
|
||||
#define INLINE_FUSED INLINE PHASE_FUSED
|
||||
#define INLINE_INNER INLINE PHASE_INNER
|
||||
|
||||
#ifndef NOT_VECTOR_MODULE
|
||||
import qualified Data.Vector.Internal.Check as Ck
|
||||
#endif
|
||||
|
||||
#define ERROR (Ck.error __FILE__ __LINE__)
|
||||
#define INTERNAL_ERROR (Ck.internalError __FILE__ __LINE__)
|
||||
|
||||
#define CHECK(f) (Ck.f __FILE__ __LINE__)
|
||||
#define BOUNDS_CHECK(f) (CHECK(f) Ck.Bounds)
|
||||
#define UNSAFE_CHECK(f) (CHECK(f) Ck.Unsafe)
|
||||
#define INTERNAL_CHECK(f) (CHECK(f) Ck.Internal)
|
||||
|
||||
#define PHASE_STREAM Please use "PHASE_FUSED" instead
|
||||
#define INLINE_STREAM Please use "INLINE_FUSED" instead
|
||||
Loading…
Add table
Add a link
Reference in a new issue