Home
last modified time | relevance | path

Searched refs:set_volatile (Results 1 – 6 of 6) sorted by relevance

/openbsd-src/gnu/gcc/gcc/config/mips/
H A Dmips.h119 extern int set_volatile; /* # of nested .set volatile's */
H A Dmips.c575 int set_volatile; variable
5472 if (set_volatile++ == 0) in print_operand()
5477 if (set_volatile == 0) in print_operand()
5479 else if (--set_volatile == 0) in print_operand()
/openbsd-src/gnu/usr.bin/gcc/gcc/config/mips/
H A Dmips.c279 int set_volatile; variable
5815 if (set_volatile++ == 0)
5820 if (set_volatile == 0)
5822 else if (--set_volatile == 0)
H A Dmips.h158 extern int set_volatile; /* # of nested .set volatile's */
/openbsd-src/gnu/llvm/llvm/bindings/ocaml/llvm/
H A Dllvm.ml1090 external set_volatile : bool -> llvalue -> unit = "llvm_set_volatile"
H A Dllvm.mli1878 (** [set_volatile v i] marks the load or store instruction [i] as volatile
1882 val set_volatile : bool -> llvalue -> unit val