Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
6c2357df
Commit
6c2357df
authored
Feb 26, 2003
by
Michael Beck
Browse files
Added 0 to initFirm() because of new signature
[r836]
parent
263d4788
Changes
2
Hide whitespace changes
Inline
Side-by-side
firmjni/testprograms/Empty.java
View file @
6c2357df
...
...
@@ -27,8 +27,8 @@ class Empty {
System
.
out
.
println
(
"\nCreating an IR graph: EMPTY..."
);
/* init library */
Firm
.
initFirm
();
/* init library
: Java did not support the callback, so ALWAYS use 0 here
*/
Firm
.
initFirm
(
0
);
/** Build type information for the procedure. **/
...
...
firmjni/testprograms/IfElseExample.java
View file @
6c2357df
...
...
@@ -29,7 +29,7 @@ class IfElseExample {
System
.
out
.
println
(
"\nCreating an IR graph: IfElseExample..."
);
/* init library */
/* init library
: Java did not support the callback, so ALWAYS use 0 here
*/
Firm
.
initFirm
();
/** Build type information for the compilation unit. **/
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment