Yes. All the AMD build does is rewrite something like
- steal('a', 'b.js', function(A, B) {});
to
- define(['a/a', 'b'], function(A, B) {});
And rename the module names accordingly (a/a.js becomes a.js). Same dependency trees, same content etc.
In case there are any differences, it is probably a bug.