dump_mem_usage.carbon 540 B

12345678910111213141516171819
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. //
  5. // ARGS: compile --phase=check --dump-mem-usage %s
  6. //
  7. // NOAUTOUPDATE
  8. //
  9. // Avoid testing specific values:
  10. // SET-CHECK-SUBSET
  11. var x: i32 = 1;
  12. // CHECK:STDOUT: ---
  13. // CHECK:STDOUT: filename: dump_mem_usage.carbon
  14. // CHECK:STDOUT: source_:
  15. // CHECK:STDOUT: used_bytes: 0
  16. // CHECK:STDOUT: reserved_bytes: 0
  17. // CHECK:STDOUT: ...