comparison rathaxes_fix_builtin_symbol.patch @ 97:ffdb018893e2

Finish the patch on the create/destroy_device rewrite in the e1000 sample and fix Builtin::symbol
author Louis Opter <louis@lse.epita.fr>
date Thu, 22 Nov 2012 15:37:46 -0800
parents
children
comparison
equal deleted inserted replaced
96:3e715b3e0ecd 97:ffdb018893e2
1 # HG changeset patch
2 # User David Pineau <dav.pineau@gmail.com>, Louis Opter <louis@lse.epita.fr>
3 # Parent 7da6e752991acb1b97f4fe77e940a4368f2cb969
4 rathaxes: fix builtin::symbol
5
6 It was builtin::Symbol instead of builtin::symbol in the compiler.
7
8 diff --git a/rathaxes/compiler/passes/back/rtxIntrospect.inc.cws b/rathaxes/compiler/passes/back/rtxIntrospect.inc.cws
9 --- a/rathaxes/compiler/passes/back/rtxIntrospect.inc.cws
10 +++ b/rathaxes/compiler/passes/back/rtxIntrospect.inc.cws
11 @@ -638,11 +638,11 @@
12 ref paramType = theChunk.variables[theVar.name].type_node.name;
13 else
14 {
15 - // That's it : It's a Builtin::Symbol, then.
16 + // That's it : It's a Builtin::symbol, then.
17 local id;
18 local dummy;
19 // The param type shall be a rtxNodeIdentifier
20 - rtxNodeIdentifier(paramType, "Symbol", "Builtin");
21 + rtxNodeIdentifier(paramType, "symbol", "Builtin");
22 }
23 }
24 else