Mercurial > hg > CbC > CbC_llvm
annotate test/CodeGen/X86/nonconst-static-ev.ll @ 83:60c9769439b8 LLVM3.7
LLVM 3.7
author | Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 18 Feb 2015 14:55:36 +0900 |
parents | 95c75e76d11b |
children | 803732b1fca8 |
rev | line source |
---|---|
0 | 1 ; RUN: not llc -march=x86 -mtriple=x86_64-linux-gnu < %s 2> %t |
2 ; RUN: FileCheck --check-prefix=CHECK-ERRORS < %t %s | |
3 | |
4 @0 = global i8 extractvalue ([1 x i8] select (i1 ptrtoint (i32* @1 to i1), [1 x i8] [ i8 1 ], [1 x i8] [ i8 2 ]), 0) | |
5 @1 = external global i32 | |
6 | |
7 ; CHECK-ERRORS: Unsupported expression in static initializer: extractvalue | |
8 |