From: Brad Beckmann Date: Mon, 20 Jul 2015 14:15:18 +0000 (-0500) Subject: util: added .cl OpenCL extension to file_type.py X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9560893f0d2e74d1c6c22fee501cd24d4f6e13d7;p=gem5.git util: added .cl OpenCL extension to file_type.py --- diff --git a/util/file_types.py b/util/file_types.py index 57194c1c8..d02bd5f1c 100644 --- a/util/file_types.py +++ b/util/file_types.py @@ -3,6 +3,7 @@ import os # lanuage type for each file extension lang_types = { '.c' : "C", + '.cl' : "C", '.h' : "C", '.cc' : "C++", '.hh' : "C++",