libgccjit: silent 2 Clang warnings

The make silent the following 2 warnings:

jit/jit-playback.h:785:16: warning: private field 'm_source_file' is not used [-Wunused-private-field]
jit/jit-playback.h:804:16: warning: private field 'm_line' is not used [-Wunused-private-field]

gcc/jit/ChangeLog:

	* jit-playback.h: Use unused attribute.
This commit is contained in:
Martin Liska 2022-12-21 08:52:35 +01:00
parent 3102b57f31
commit 3e030227ea

View file

@ -782,7 +782,7 @@ public:
vec<location *> m_locations;
private:
source_file *m_source_file;
source_file *m_source_file ATTRIBUTE_UNUSED;
int m_line_num;
};
@ -801,7 +801,7 @@ public:
private:
recording::location *m_recording_loc;
source_line *m_line;
source_line *m_line ATTRIBUTE_UNUSED;
int m_column_num;
};