blob: 6e9ca0c08886d9a2721132b57e889e54959e72d3 [file] [log] [blame]
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07001// RUN: %clang_cc1 -std=c++11 -fsanitize=signed-integer-overflow,integer-divide-by-zero,float-divide-by-zero,shift-base,shift-exponent,unreachable,return,vla-bound,alignment,null,vptr,object-size,float-cast-overflow,bool,enum,array-bounds,function -emit-llvm %s -o - -triple x86_64-linux-gnu | FileCheck %s
Nick Lewyckyc5699172013-11-08 23:00:12 +00002
3bool GetOptionalBool(bool *value);
4bool GetBool(bool default_value) {
5 // CHECK-LABEL: @_Z7GetBoolb
6 // CHECK-NOT: select
7 bool value;
8 return GetOptionalBool(&value) ? value : default_value;
9}