Kees Cook | c2187c2 | 2019-05-22 16:16:15 +0000 | [diff] [blame] | 1 | ; RUN: llc -mtriple=thumbv8-none-linux-gnueabi < %s | FileCheck %s |
2 | |||||
3 | ; Make sure that boolean immediates are properly (zero) extended. | ||||
4 | ; CHECK: TEST 42 + 1 - . | ||||
5 | |||||
6 | target triple = "thumbv8-none-linux-gnueabi" | ||||
7 | |||||
8 | define i32 @foo() #0 { | ||||
9 | entry: | ||||
10 | tail call void asm sideeffect "#TEST 42 + ${0:c} - .\0A\09", "i,~{dirflag},~{fpsr},~{flags}"(i1 true) #0 | ||||
11 | ret i32 1 | ||||
12 | } | ||||
13 | |||||
14 | attributes #0 = { nounwind } |