Rafael Espindola | 4c50d46 | 2013-12-13 19:44:40 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -triple x86_64-pc-linux -emit-llvm < %s | FileCheck %s |
Eli Friedman | 10c2417 | 2008-06-01 15:31:44 +0000 | [diff] [blame] | 2 | |
3 | // Check that the type of this global isn't i1 | ||||
Rafael Espindola | 4c50d46 | 2013-12-13 19:44:40 +0000 | [diff] [blame] | 4 | // CHECK: @test = global i8 1 |
Eli Friedman | 10c2417 | 2008-06-01 15:31:44 +0000 | [diff] [blame] | 5 | _Bool test = &test; |