# File lib/new_relic/language_support.rb, line 61
  def with_cautious_gc
    if broken_gc?
      with_disabled_gc { yield }
    else
      yield
    end
  end