Added new required comment_string_end
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 20 Dec 2006 13:52:38 +0000 (13:52 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 20 Dec 2006 13:52:38 +0000 (13:52 +0000)
ir/be/arm/arm_spec.pl
ir/be/ia32/ia32_spec.pl
ir/be/mips/mips_spec.pl
ir/be/ppc32/ppc32_spec.pl

index 43ae485..6d80192 100644 (file)
@@ -6,7 +6,9 @@
 
 $arch = "arm";
 
-$comment_string = '/*';
+# this strings mark the beginning and the end of a comment in emit
+$comment_string     = "/*";
+$comment_string_end = "*/";
 
 # the number of additional opcodes you want to register
 #$additional_opcodes = 0;
index f54eb68..8a4e9cc 100644 (file)
@@ -5,7 +5,7 @@
 # the cpu architecture (ia32, ia64, mips, sparc, ppc, ...)
 $arch = "ia32";
 
-# this string marks the beginning of a comment in emit
+# this strings mark the beginning and the end of a comment in emit
 $comment_string     = "/*";
 $comment_string_end = "*/";
 
index 13ae13e..dbea8ba 100644 (file)
@@ -6,7 +6,9 @@
 
 $arch = "mips";
 
-$comment_string = "#";
+# this strings mark the beginning and the end of a comment in emit
+$comment_string     = "#";
+$comment_string_end = "";
 
 # The node description is done as a perl hash initializer with the
 # following structure:
index 7bda313..ffcd064 100644 (file)
@@ -6,7 +6,9 @@
 
 $arch = "ppc32";
 
-$comment_string = "/*";
+# this strings mark the beginning and the end of a comment in emit
+$comment_string     = "/*";
+$comment_string_end = "*/";
 
 # The node description is done as a perl hash initializer with the
 # following structure: