aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2023-11-09 22:29:02 +0100
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2023-11-09 22:29:02 +0100
commit0c6c9b64545c5ef87df9f025ecb90ed537054caa (patch)
tree2c1913c7c1c06d5d51389163bf2fb57dcd445c9b
parent38202d24cc07d2b3e9649cf4546b34380dce842e (diff)
downloadgcc-0c6c9b64545c5ef87df9f025ecb90ed537054caa.zip
gcc-0c6c9b64545c5ef87df9f025ecb90ed537054caa.tar.gz
gcc-0c6c9b64545c5ef87df9f025ecb90ed537054caa.tar.bz2
Add missing declaration of get_restrict in C++ interface
gcc/jit/ChangeLog: * libgccjit++.h:
-rw-r--r--gcc/jit/libgccjit++.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/jit/libgccjit++.h b/gcc/jit/libgccjit++.h
index 4a04db3..f9a0017 100644
--- a/gcc/jit/libgccjit++.h
+++ b/gcc/jit/libgccjit++.h
@@ -360,6 +360,7 @@ namespace gccjit
type get_volatile ();
type get_aligned (size_t alignment_in_bytes);
type get_vector (size_t num_units);
+ type get_restrict ();
// Shortcuts for getting values of numeric types:
rvalue zero ();