basic.carbon 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. // AUTOUPDATE
  6. fn F(b: bool, n: i32, m: i32) -> i32 {
  7. var x: [i32; 1] = (0,);
  8. return if b then x[m] else x[n];
  9. }
  10. // CHECK:STDOUT: --- basic.carbon
  11. // CHECK:STDOUT:
  12. // CHECK:STDOUT: constants {
  13. // CHECK:STDOUT: %.1: i32 = int_literal 1 [template]
  14. // CHECK:STDOUT: %.2: type = array_type %.1, i32 [template]
  15. // CHECK:STDOUT: %.3: type = ptr_type [i32; 1] [template]
  16. // CHECK:STDOUT: %.4: i32 = int_literal 0 [template]
  17. // CHECK:STDOUT: %.5: type = tuple_type (i32) [template]
  18. // CHECK:STDOUT: %.6: i32 = int_literal 0 [template]
  19. // CHECK:STDOUT: }
  20. // CHECK:STDOUT:
  21. // CHECK:STDOUT: file {
  22. // CHECK:STDOUT: package: <namespace> = namespace package, {.F = %F}
  23. // CHECK:STDOUT: %F: <function> = fn_decl @F [template]
  24. // CHECK:STDOUT: }
  25. // CHECK:STDOUT:
  26. // CHECK:STDOUT: fn @F(%b: bool, %n: i32, %m: i32) -> i32 {
  27. // CHECK:STDOUT: !entry:
  28. // CHECK:STDOUT: %.loc8_16: i32 = int_literal 1 [template = constants.%.1]
  29. // CHECK:STDOUT: %.loc8_17: type = array_type %.loc8_16, i32 [template = constants.%.2]
  30. // CHECK:STDOUT: %x.var: ref [i32; 1] = var x
  31. // CHECK:STDOUT: %x: ref [i32; 1] = bind_name x, %x.var
  32. // CHECK:STDOUT: %.loc8_22: i32 = int_literal 0 [template = constants.%.4]
  33. // CHECK:STDOUT: %.loc8_24.1: (i32,) = tuple_literal (%.loc8_22)
  34. // CHECK:STDOUT: %.loc8_24.2: i32 = int_literal 0 [template = constants.%.6]
  35. // CHECK:STDOUT: %.loc8_24.3: ref i32 = array_index %x.var, %.loc8_24.2
  36. // CHECK:STDOUT: %.loc8_24.4: init i32 = initialize_from %.loc8_22 to %.loc8_24.3
  37. // CHECK:STDOUT: %.loc8_24.5: init [i32; 1] = array_init (%.loc8_24.4) to %x.var
  38. // CHECK:STDOUT: %.loc8_24.6: init [i32; 1] = converted %.loc8_24.1, %.loc8_24.5
  39. // CHECK:STDOUT: assign %x.var, %.loc8_24.6
  40. // CHECK:STDOUT: %b.ref: bool = name_ref b, %b
  41. // CHECK:STDOUT: if %b.ref br !if.expr.then else br !if.expr.else
  42. // CHECK:STDOUT:
  43. // CHECK:STDOUT: !if.expr.then:
  44. // CHECK:STDOUT: %x.ref.loc9_20: ref [i32; 1] = name_ref x, %x
  45. // CHECK:STDOUT: %m.ref: i32 = name_ref m, %m
  46. // CHECK:STDOUT: %.loc9_23.1: ref i32 = array_index %x.ref.loc9_20, %m.ref
  47. // CHECK:STDOUT: %.loc9_23.2: i32 = bind_value %.loc9_23.1
  48. // CHECK:STDOUT: br !if.expr.result(%.loc9_23.2)
  49. // CHECK:STDOUT:
  50. // CHECK:STDOUT: !if.expr.else:
  51. // CHECK:STDOUT: %x.ref.loc9_30: ref [i32; 1] = name_ref x, %x
  52. // CHECK:STDOUT: %n.ref: i32 = name_ref n, %n
  53. // CHECK:STDOUT: %.loc9_33.1: ref i32 = array_index %x.ref.loc9_30, %n.ref
  54. // CHECK:STDOUT: %.loc9_33.2: i32 = bind_value %.loc9_33.1
  55. // CHECK:STDOUT: br !if.expr.result(%.loc9_33.2)
  56. // CHECK:STDOUT:
  57. // CHECK:STDOUT: !if.expr.result:
  58. // CHECK:STDOUT: %.loc9_10: i32 = block_arg !if.expr.result
  59. // CHECK:STDOUT: return %.loc9_10
  60. // CHECK:STDOUT: }
  61. // CHECK:STDOUT: