dbussink (owner)

Revisions

gist: 160815 Download_button fork
public
Public Clone URL: git://gist.github.com/160815.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
diff --git a/vm/vmmethod.cpp b/vm/vmmethod.cpp
index 5f915c1..8dd7b37 100644
--- a/vm/vmmethod.cpp
+++ b/vm/vmmethod.cpp
@@ -547,17 +547,12 @@ namespace rubinius {
       frame->cm = cm;
       frame->scope = scope;
 
-
 #ifdef RBX_PROFILER
       if(unlikely(state->shared.profiling())) {
         profiler::MethodEntry method(state, msg, args, cm);
- return (*vmm->run)(state, vmm, frame, args);
- } else {
- return (*vmm->run)(state, vmm, frame, args);
       }
-#else
- return (*vmm->run)(state, vmm, frame, args);
 #endif
+ return (*vmm->run)(state, vmm, frame, args);
     }
 
   /** @todo Is this redundant after having gone through set_argument_handler? --rue */