LLVM: lib/Support/regutils.h Source File (original) (raw)

Go to the documentation of this file.

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38#ifndef LLVM_SUPPORT_REGUTILS_H

39#define LLVM_SUPPORT_REGUTILS_H

40

41

42#define NC (CHAR_MAX - CHAR_MIN + 1)

43typedef unsigned char uch;

44

45

46#ifndef REDEBUG

47#ifndef NDEBUG

48#define NDEBUG

49#endif

50#endif

51#include <assert.h>

52

53

54#ifdef USEBCOPY

55#define memmove(d, s, c) bcopy(s, d, c)

56#endif

57

58#endif

unsigned char uch

Definition regutils.h:43