diff options
author | dim <dim@FreeBSD.org> | 2012-04-14 14:01:31 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2012-04-14 14:01:31 +0000 |
commit | 50b73317314e889cf39c7b1d6cbf419fa7502f22 (patch) | |
tree | be1815eb79b42ff482a8562b13c2dcbf0c5dcbee /test/Frontend/ir-support-errors.ll | |
parent | dc04cb328508e61aad809d9b53b12f9799a00e7d (diff) | |
download | FreeBSD-src-50b73317314e889cf39c7b1d6cbf419fa7502f22.zip FreeBSD-src-50b73317314e889cf39c7b1d6cbf419fa7502f22.tar.gz |
Vendor import of clang trunk r154661:
http://llvm.org/svn/llvm-project/cfe/trunk@r154661
Diffstat (limited to 'test/Frontend/ir-support-errors.ll')
-rw-r--r-- | test/Frontend/ir-support-errors.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Frontend/ir-support-errors.ll b/test/Frontend/ir-support-errors.ll index 98227d4..cb5913c 100644 --- a/test/Frontend/ir-support-errors.ll +++ b/test/Frontend/ir-support-errors.ll @@ -3,6 +3,6 @@ target triple = "x86_64-apple-darwin10" define i32 @f0() nounwind ssp { -; CHECK: {{.*}}ir-support-errors.ll:7:16: error: expected value token - ret i32 x +; CHECK: {{.*}}ir-support-errors.ll:7:16: error: use of undefined value '%x' + ret i32 %x } |