diff options
Diffstat (limited to 'gcc/objc')
-rw-r--r-- | gcc/objc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/objc/objc-next-runtime-abi-02.c | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/objc/ChangeLog b/gcc/objc/ChangeLog index 5d632a6..0fc51e65bd 100644 --- a/gcc/objc/ChangeLog +++ b/gcc/objc/ChangeLog @@ -1,3 +1,9 @@ +2017-08-09 Marek Polacek <polacek@redhat.com> + + PR c/81417 + * objc-next-runtime-abi-02.c (build_v2_build_objc_method_call): Update + a call to build_conditional_expr. + 2017-08-08 Martin Liska <mliska@suse.cz> * objc-gnu-runtime-abi-01.c: Include header files. diff --git a/gcc/objc/objc-next-runtime-abi-02.c b/gcc/objc/objc-next-runtime-abi-02.c index a2245a4..0e7fd54 100644 --- a/gcc/objc/objc-next-runtime-abi-02.c +++ b/gcc/objc/objc-next-runtime-abi-02.c @@ -1647,8 +1647,8 @@ build_v2_build_objc_method_call (int super_flag, tree method_prototype, /* ??? CHECKME. */ ret_val = build_conditional_expr (input_location, ifexp, 1, - ret_val, NULL_TREE, - ftree, NULL_TREE); + ret_val, NULL_TREE, input_location, + ftree, NULL_TREE, input_location); #endif } return ret_val; |